Selecting the Edit Mode
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:
1. Click the C1DateTimePicker control once to select it.
2. In the Properties window, click the EditMode drop-down arrow and select a mode from the list. For this example, select Date.
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:
1. Open the Window1.xaml.cs page.
2. Import the following namespace:
Imports C1.WPF.DateTimeEditors
• C#
using C1.WPF.DateTimeEditors;
3. Place the following code beneath the InitializeComponent() method:
C1DateTimePicker1.EditMode = C1DateTimePickerEditMode.Date
• C#
c1DateTimePicker1.EditMode = C1DateTimePickerEditMode.Date;
4. Run the project.
This Topic Illustrates the Following:
In this topic, you set the EditMode to Date, which removes the time picker form the C1DateTimePicker control. The result of this topic will resemble the following image:
|