Skip to main content

ListBoxEdit.SelectItemWithNullValue Property

Gets or sets whether the editor searches for a null item in the bound data source when the editor value is null (empty). This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public bool SelectItemWithNullValue { get; set; }

Property Value

Type Description
Boolean

true, to find and select an item with null value; otherwise, false.

Remarks

In versions before 18.1, the ListBoxEdit searched for the null value in the source collection when its EditValue property was empty. This led to performance issues in forms with empty editors bound to large data sources.

Starting with version 18.1, the ListBoxEdit does not select any item in the source collection when the EditValue property is null (the ListBoxEdit.SelectedIndex property remains “-1“). If items or value properties (specified in the editor’s ListBoxEdit.ValueMember property) in your source collection can be empty and you want to select them by assigning null to the EditValue property, set the SelectItemWithNullValue property to true.

See Also