The CalendarView
property specifies the appearance of the calendar in the drop-down window. To allow users to edit the time portion of a date-time value using the drop-down calendar, enable the CalendarTimeEditing property.
C# |
using DevExpress.Utils;
using DevExpress.XtraEditors.Repository;
dateEdit1.Properties.CalendarView = CalendarView.Fluent;
dateEdit1.Properties.CalendarTimeEditing = DefaultBoolean.True;
|
VB |
Imports DevExpress.Utils
Imports DevExpress.XtraEditors.Repository
dateEdit1.Properties.CalendarView = CalendarView.Fluent
dateEdit1.Properties.CalendarTimeEditing = DefaultBoolean.True
|