wpf-devexpress-dot-xpf-dot-editors-dot-baseedit-5528b706.md
Gets or sets whether the edit value should be validated when pressing the ENTER key. This is a dependency property.
Namespace : DevExpress.Xpf.Editors
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public bool ValidateOnEnterKeyPressed { get; set; }
Public Property ValidateOnEnterKeyPressed As Boolean
| Type | Description |
|---|---|
| Boolean |
true to validate the edit value after the ENTER key has been pressed; otherwise, false.
|
If the ValidateOnEnterKeyPressed property is set to true and the ENTER key is pressed, the editor fires the BaseEdit.Validate event, allowing you to validate a new value.
The BaseEdit.Validate event isn’t raised if the editor’s BaseEdit.CausesValidation property is set to false.
To specify whether an editor’s value should be validated when text is input into it, use the BaseEdit.ValidateOnTextInput property.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ValidateOnEnterKeyPressed property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
reporting-wpf-report-designer-customize-controls-smart-tag/CS/App.xaml#L31
<dxe:PopupBaseEdit EditValue="{Binding ProgressBinding, UpdateSourceTrigger=PropertyChanged}"
ValidateOnEnterKeyPressed="True"
ValidateOnTextInput="False"
See Also