Articles in this section
Category / Section

How to set null value in WPF DateTimeEdit control?

2 mins read

If you want to set the null value for WPF DateTimeEdit control, you need to use the NullValue property. You can enable it only by setting the IsEmptyDateEnabled property to true and ShowMaskOnNullValue property to false. If the ShowMaskOnNullValue property true, then datetime mask is shown.

XAML

<syncfusion:DateTimeEdit x:Name="dateTimeEdit" Height="23" 
    Text="DateTimeEdit" TextWrapping="Wrap" Width="150"
    IsEmptyDateEnabled="True" IsVisibleRepeatButton="True"
    NullValue="{x:Null}" NoneDateText="No date is selected" ShowMaskOnNullValue="True" />

C#

DateTimeEdit dateTime = new DateTimeEdit();
dateTime.Height = 25;
dateTime.Width = 150;
dateTime.IsEmptyDateEnabled = true;
dateTime.IsVisibleRepeatButton = true;
dateTime.NullValue = null;
dateTime.NoneDateText = "No date is selected";
dateTime.ShowMaskOnNullValue = false;
this.Content = dateTime;

Output:

Null value set in WPF DateTimeEdit

 

Sample: View sample in GitHub.


Conclusion

I hope you enjoyed learning about how to set null value in DateTimeEdit control.

You can refer to our WPF DateTimeEdit feature tour page to know about its other groundbreaking feature representations. You can also explore our WPF DateTimeEdit to understand how to present and manipulate data.

For current customers, you can check out our WPF Controls from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WPF DateTimeEdit and other WPF controls.

If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments
Please sign in to leave a comment
Access denied
Access denied