You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, you can always create your own DateTimePicker and retrieve the PART_TextBox control from OnApplyTemplate():
` public class MyDateTimePicker : DateTimePicker
{
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
var textBox = this.GetTemplateChild( "PART_TextBox" ) as TextBox;
Hello, I trying to access the PART_TextBox, So when I click the tab button on the date to go next date part gets null.
The text was updated successfully, but these errors were encountered: