Populating 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)
- C#
- VB
- F#
public event EventHandler<PopulatingEventArgs> Populating
Public Event Populating As EventHandler(Of PopulatingEventArgs)
member Populating : IEvent<EventHandler<PopulatingEventArgs>,
PopulatingEventArgs>
Value
EventHandler(PopulatingEventArgs)
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.