Class AutoCompleteBoxesItemsControl
Represents a control that provides functionality for autocompleting user input using a list of items.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class AutoCompleteBoxesItemsControl : ItemsControl
Constructors
AutoCompleteBoxesItemsControl()
Initializes a new instance of the AutoCompleteBoxesItemsControl class.
Declaration
public AutoCompleteBoxesItemsControl()
Fields
BoxesItemStyleProperty
Identifies the BoxesItemStyle dependency property.
Declaration
public static readonly DependencyProperty BoxesItemStyleProperty
Field Value
System.Windows.DependencyProperty
|
BoxesItemStyleSelectorProperty
Identifies the BoxesItemStyleSelector dependency property.
Declaration
public static readonly DependencyProperty BoxesItemStyleSelectorProperty
Field Value
System.Windows.DependencyProperty
|
BoxesItemTemplateProperty
Identifies the BoxesItemTemplate dependency property.
Declaration
public static readonly DependencyProperty BoxesItemTemplateProperty
Field Value
System.Windows.DependencyProperty
|
BoxesItemTemplateSelectorProperty
Identifies the BoxesItemTemplateSelector dependency property.
Declaration
public static readonly DependencyProperty BoxesItemTemplateSelectorProperty
Field Value
System.Windows.DependencyProperty
|
Properties
BoxesItemStyle
Gets or sets the style for items in the AutoCompleteBox.
Declaration
public Style BoxesItemStyle { get; set; }
Property Value
System.Windows.Style
|
BoxesItemStyleSelector
Provides custom styling for items in the AutoCompleteBox by selecting the appropriate style based on specific criteria.
Declaration
public StyleSelector BoxesItemStyleSelector { get; set; }
Property Value
System.Windows.Controls.StyleSelector
|
BoxesItemTemplate
Gets or sets the template used for the items in the AutoCompleteBox.
Declaration
public DataTemplate BoxesItemTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
BoxesItemTemplateSelector
Provides a data template selector for the items in an AutoCompleteBox, allowing for different templates to be applied based on the data type or content of the items.
Declaration
public DataTemplateSelector BoxesItemTemplateSelector { get; set; }
Property Value
System.Windows.Controls.DataTemplateSelector
|
Methods
GetContainerForItemOverride()
Gets the container for the specified item in the AutoCompleteBox.
Declaration
protected override DependencyObject GetContainerForItemOverride()
Returns
System.Windows.DependencyObject
|
OnItemTemplateSelectorChanged(DataTemplateSelector, DataTemplateSelector)
Declaration
protected override void OnItemTemplateSelectorChanged(DataTemplateSelector oldItemTemplateSelector, DataTemplateSelector newItemTemplateSelector)
Parameters
System.Windows.Controls.DataTemplateSelector
oldItemTemplateSelector
|
System.Windows.Controls.DataTemplateSelector
newItemTemplateSelector
|
PrepareContainerForItemOverride(DependencyObject, Object)
Prepares the specified element to display the specified item in the AutoCompleteBox.
Declaration
protected override void PrepareContainerForItemOverride(DependencyObject element, object item)
Parameters
System.Windows.DependencyObject
element
|
System.Object
item
|