最终用户如何清除DevExpress StringEdit编辑器?

时间:2013-02-08 15:51:28

标签: devexpress

在UI中我们有一个文本框,它是一个DevExpress.ExpressApp.Win.Editors.StringEdit。

我们将其属性设置如下:

control.Properties.Mask.MaskType = MaskType.DateTimeAdvancingCaret;
control.Properties.DisplayFormat.FormatString = "yyyy.MM.dd";
control.Properties.DisplayFormat.FormatType = FormatType.DateTime;

当文本框获得焦点时,它是空的。当最终用户按任意键时,控件显示有效日期。用户修改日期。现在用户如何清空/清除此文本框(使用键盘)?

(Del,BackSpace不起作用)

THX

1 个答案:

答案 0 :(得分:0)

来自DevExpress Text Editing Overview帮助文章:
All common text editing features are available in text editors. This includes typing characters, deleting them using the BACKSPACE or DEL keys, etc. Note that end-users can press the CTRL+DEL combination to remove the editor's entire content.