AutoCompleteBoxPopulating Event
Occurs when the
AutoCompleteBox is
populating the drop-down with possible matches based on the
Text
property.
Namespace: Avalonia.ControlsAssembly: Avalonia.Controls (in Avalonia.Controls.dll) Version: 11.3.999
public event EventHandler<PopulatingEventArgs> Populating
Public Event Populating As EventHandler(Of PopulatingEventArgs)
member Populating : IEvent<EventHandler<PopulatingEventArgs>,
PopulatingEventArgs>
Value
EventHandlerPopulatingEventArgs
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.