In the UI we have a textbox which is a DevExpress.ExpressApp.Win.Editors.StringEdit.
We set its properties as follows:
control.Properties.Mask.MaskType = MaskType.DateTimeAdvancingCaret;
control.Properties.DisplayFormat.FormatString = "yyyy.MM.dd";
control.Properties.DisplayFormat.FormatType = FormatType.DateTime;
When the textbox gets the focus it is empty. When the end user presses any key the control displays a valid date. The user modifies the date. Now how can the user empty / clear this textbox (using the keyboard)?
(Del, BackSpace does not work)
Thx