Class PopulatingEventArgs
Provides data for the Populating event.
Inherited Members
Namespace: System.Windows.Controls
Assembly: Controls.Input.OpenSilver.dll
Syntax
public class PopulatingEventArgs : RoutedEventArgs
Constructors
| Improve this Doc View SourcePopulatingEventArgs(String)
Initializes a new instance of the PopulatingEventArgs.
Declaration
public PopulatingEventArgs(string parameter)
Parameters
Type | Name | Description |
---|---|---|
System.String | parameter | The value of the SearchText property, which is used to filter items for the AutoCompleteBox control. |
Properties
| Improve this Doc View SourceCancel
Gets or sets a value indicating whether the Populating event should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | True to cancel the event, otherwise false. The default is false. |
Parameter
Gets the text that is used to determine which items to display in the AutoCompleteBox control.
Declaration
public string Parameter { get; }
Property Value
Type | Description |
---|---|
System.String | The text that is used to determine which items to display in the AutoCompleteBox. |