AutoCompleteBoxPopulating Event

Occurs when the AutoCompleteBox is populating the drop-down with possible matches based on the Text property.

Definition

Namespace: Avalonia.Controls
Assembly: Avalonia.Controls (in Avalonia.Controls.dll) Version: 11.3.999
public event EventHandler<PopulatingEventArgs> Populating

Value

EventHandlerPopulatingEventArgs

Remarks

If the event is canceled, by setting the PopulatingEventArgs.Cancel property to true, the AutoCompleteBox will not automatically populate the selection adapter contained in the drop-down. In this case, if you want possible matches to appear, you must provide the logic for populating the selection adapter.

See Also