ClassAutoCompleteBoxesItemsControl
Represents a control that provides functionality for autocompleting user input using a list of items.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
public class AutoCompleteBoxesItemsControl : ItemsControl
Inheritance: objectAutoCompleteBoxesItemsControl
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
DependencyProperty
BoxesItemStyleSelectorProperty
Identifies the BoxesItemStyleSelector dependency property.
Declaration
public static readonly DependencyProperty BoxesItemStyleSelectorProperty
Field Value
DependencyProperty
BoxesItemTemplateProperty
Identifies the BoxesItemTemplate dependency property.
Declaration
public static readonly DependencyProperty BoxesItemTemplateProperty
Field Value
DependencyProperty
BoxesItemTemplateSelectorProperty
Identifies the BoxesItemTemplateSelector dependency property.
Declaration
public static readonly DependencyProperty BoxesItemTemplateSelectorProperty
Field Value
DependencyProperty
Properties
BoxesItemStyle
Gets or sets the style for items in the AutoCompleteBox.
Declaration
public Style BoxesItemStyle { get; set; }
Property Value
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
StyleSelector
BoxesItemTemplate
Gets or sets the template used for the items in the AutoCompleteBox.
Declaration
public DataTemplate BoxesItemTemplate { get; set; }
Property Value
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
DataTemplateSelector
Methods
GetContainerForItemOverride()
Gets the container for the specified item in the AutoCompleteBox.
Declaration
protected override DependencyObject GetContainerForItemOverride()
Returns
DependencyObject
OnItemTemplateSelectorChanged(DataTemplateSelector, DataTemplateSelector)
Declaration
protected override void OnItemTemplateSelectorChanged(DataTemplateSelector oldItemTemplateSelector, DataTemplateSelector newItemTemplateSelector)
Parameters
oldItemTemplateSelector
DataTemplateSelector
newItemTemplateSelector
DataTemplateSelector
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
element
DependencyObject
item