AutoCompleteBox.

ItemFilter Property

Summary

Gets or sets the custom method that uses user-entered text to filter the items specified by the Avalonia.Controls.AutoCompleteBox.ItemsSource property for display in the drop-down.
Namespace
Avalonia.Controls
Containing Type
AutoCompleteBox

Syntax

public AutoCompleteFilterPredicate<object> ItemFilter { get; set; }

Remarks

The filter mode is automatically set to Custom if you set the ItemFilter property.

Value

Type Description
AutoCompleteFilterPredicate<object> The custom method that uses the user-entered text to filter the items specified by the Avalonia.Controls.AutoCompleteBox.ItemsSource property. The default is null.