Back to Devexpress

RepositoryItemLookUpEdit.SelectFirstRowOnEnterKey Property

windowsforms-devexpress-dot-xtraeditors-dot-repository-dot-repositoryitemlookupedit-098dba6b.md

latest2.8 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DefaultValue(DefaultBoolean.Default)]
[DXCategory("Behavior")]
public DefaultBoolean SelectFirstRowOnEnterKey { get; set; }
vb
<DXCategory("Behavior")>
<DefaultValue(DefaultBoolean.Default)>
Public Property SelectFirstRowOnEnterKey As DefaultBoolean

Property Value

TypeDefaultDescription
DefaultBooleanDefault

True to select the first found item in the drop-down list when the user presses Enter; otherwise, Default or False.

|

Available values:

NameDescriptionReturn Value
True

The value is true.

|

0

| | False |

The value is false.

|

1

| | Default |

The value is specified by a global option or a higher-level object.

|

2

|

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.

csharp
using DevExpress.Utils;
using DevExpress.XtraEditors.Controls;

// ...
lookUpEdit1.Properties.SearchMode = SearchMode.AutoSearch;
lookUpEdit1.Properties.SelectFirstRowOnEnterKey = DefaultBoolean.True;
vb
Imports DevExpress.Utils
Imports DevExpress.XtraEditors.Controls

' ...
lookUpEdit1.Properties.SearchMode = SearchMode.AutoSearch
lookUpEdit1.Properties.SelectFirstRowOnEnterKey = DefaultBoolean.True

See Also

SearchMode

RepositoryItemLookUpEdit Class

RepositoryItemLookUpEdit Members

DevExpress.XtraEditors.Repository Namespace