C1DateTimePicker Control Help > C1DateTimePicker Task-Based Help > 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:
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:
Visual Basic |
Copy Code
|
---|---|
Imports C1.WPF.DateTimeEditors
|
C# |
Copy Code
|
---|---|
using C1.WPF.DateTimeEditors;
|
Visual Basic |
Copy Code
|
---|---|
C1DateTimePicker1.EditMode = C1DateTimePickerEditMode.Date |
C# |
Copy Code
|
---|---|
c1DateTimePicker1.EditMode = C1DateTimePickerEditMode.Date; |
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: