Show / Hide Table of Contents

Class PopulatingEventArgs

Provides data for the Populating event.

Inheritance
System.Object
System.EventArgs
RoutedEventArgs
PopulatingEventArgs
Inherited Members
RoutedEventArgs.OriginalSource
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.Controls.Input.dll
Syntax
public class PopulatingEventArgs : RoutedEventArgs

Constructors

| Improve this Doc View Source

PopulatingEventArgs(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 Source

Cancel

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.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source