[]
By default, the C1DateTimePicker control shows both the date and time pickers, but you may also choose to show only the date picker or only the time picker. In this topic, you will learn how to change the editor mode in the designer, in XAML, and in code.
In the Designer
To change the edit mode, complete the following steps:
In XAML
To change the edit mode, place EditMode="Date" to the <my:C1DateTimePicker> tag so that the markup resembles the following:
<my:C1DateTimePicker EditMode="Date">
In Code
To change the edit mode, complete the following steps:
Open the Window1.xaml.cs page.
Import the following namespace:
Imports C1.WPF.DateTimeEditors
using C1.WPF.DateTimeEditors;
Place the following code beneath the InitializeComponent() method:
C1DateTimePicker1.EditMode = C1DateTimePickerEditMode.Date
c1DateTimePicker1.EditMode = C1DateTimePickerEditMode.Date;
Run the project.
This Topic Illustrates the Following:
In this topic, you set the C1DateTimePicker.EditMode to Date, which removes the time picker form the C1DateTimePicker control. The result of this topic will resemble the following image: