RepositoryItemLookUpEdit.SelectFirstRowOnEnterKey Property
Gets or sets whether the LookUp selects the first found item in the drop-down list when the user presses Enter.
Namespace: DevExpress.XtraEditors.Repository
Assembly: DevExpress.XtraEditors.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(DefaultBoolean.Default)]
[DXCategory("Behavior")]
public DefaultBoolean SelectFirstRowOnEnterKey { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DefaultBoolean | Default |
|
Available values:
Name | Description | Return Value |
---|---|---|
True | The value is true. |
|
False | The value is false. |
|
Default | The value is specified by a global option or a higher-level object. |
|
Remarks
The LookUp editor allows users to search for items. The LookUp editor displays the search results in the drop-down list.
The SelectFirstRowOnEnterKey
property specifies whether the user can press Enter to select the first found item.
using DevExpress.Utils;
using DevExpress.XtraEditors.Controls;
// ...
lookUpEdit1.Properties.SearchMode = SearchMode.AutoSearch;
lookUpEdit1.Properties.SelectFirstRowOnEnterKey = DefaultBoolean.True;