PopulatedEventArgs Class
Definition
Provides data for the Avalonia.Controls.AutoCompleteBox.Populated event.
public class PopulatedEventArgs
Constructors
| Name | Description |
|---|---|
| PopulatedEventArgs | Initializes a new instance of the Avalonia.Controls.PopulatedEventArgs. |
PopulatedEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.PopulatedEventArgs.
public PopulatedEventArgs(System.Collections.IEnumerable data)
Parameters
data System.Collections.IEnumerable
The list of possible matches added to the drop-down portion of the Avalonia.Controls.AutoCompleteBox control.
Properties
| Name | Description |
|---|---|
| Data | Gets the list of possible matches added to the drop-down portion of the Avalonia.Controls.AutoCompleteBox control. |
Data Property
Gets the list of possible matches added to the drop-down portion of the Avalonia.Controls.AutoCompleteBox control.
public System.Collections.IEnumerable Data { get; set; }
Value
The list of possible matches added to the Avalonia.Controls.AutoCompleteBox.