How can I show the timer in DevExpress.XtraEditors.DateEdit ? I want to dynamically select the time.
DevExpress.XtraEditors.DateEdit
to show TimePicker, you must set the VistaDisplayMode and VistaEditTime to true and remember to change EditFormat , DisplayFormat and EditMask to any DateTime format, for example: "dd.My hh:mm"
VistaDisplayMode
VistaEditTime
true
EditFormat
DisplayFormat
EditMask
"dd.My hh:mm"
Assuming dateEdit is the name of your control:
dateEdit.Properties.VistaDisplayMode = DefaultBoolean.True; dateEdit.Properties.VistaEditTime = DefaultBoolean.True;
Source: https://habr.com/ru/post/1432228/More articles:Member function syntax in class template specialization - c ++How to get links to images displayed in the right hand of Google - javascriptWebSockets for Android and iOS apps - androidAnimation of transition to activity in Android - androidHow to export HCRYPTKEY or PRIVATEKEYBLOB to a PFX file - certificateBreak a vector randomly into two sets - randomQt scroll event detection - qtShort syntax for a call function, if defined - functionThe Relationship Between Two WPF Applications - .net-4.0Is this possible with regex? - regexAll Articles