PopulatingEventArgs Class
Definition
Provides data for the Avalonia.Controls.AutoCompleteBox.Populating event.
public class PopulatingEventArgs
Constructors
| Name | Description |
|---|---|
| PopulatingEventArgs | Initializes a new instance of the Avalonia.Controls.PopulatingEventArgs. |
PopulatingEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.PopulatingEventArgs.
public PopulatingEventArgs(string parameter)
Parameters
parameter string
The value of the Avalonia.Controls.AutoCompleteBox.SearchText property, which is used to filter items for the Avalonia.Controls.AutoCompleteBox control.
Properties
| Name | Description |
|---|---|
| Parameter | Gets the text that is used to determine which items to display in the Avalonia.Controls.AutoCompleteBox control. |
Parameter Property
Gets the text that is used to determine which items to display in the Avalonia.Controls.AutoCompleteBox control.
public string Parameter { get; set; }
Value
The text that is used to determine which items to display in the Avalonia.Controls.AutoCompleteBox.