DateTimeEditors for WinRT
Allowing Null Values

By default, the C1TimeEditor control doesn't allow users to enter null values, but you can force the control to accept a null value by setting the C1TimeEditor.AllowNull property to True. In this topic, you will learn how to set the C1TimeEditor.AllowNull property to True in the designer, in XAML, and in code.

In the Designer

Complete the following steps:

  1. Click the C1TimeEditor control once to select it.
  2. In the Properties window, select the C1TimeEditor.AllowNull check box.

In XAML

To allow null values, place AllowNull="True" to the <DateTimeEditors:C1TimeEditor>tag so that the markup resembles the following:

Markup
Copy Code
<DateTimeEditors:C1TimeEditor AllowNull="True"/>

In Code

Complete the following steps:

  1. Open the MainPage.xaml.cs page.
  2. Place the following code beneath the C1TimeEditor_Loaded event:
Visual Basic
Copy Code
C1TimeEditor1.AllowNull = True

C#
Copy Code
c1TimeEditor1.AllowNull = true;
  1. Run the project.
See Also

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Product Support Forum  |  Documentation Feedback