Class
AutoCompleteBoxesItemsControl

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:

cs-api-definition
public class AutoCompleteBoxesItemsControl : ItemsControl

Inheritance: objectAutoCompleteBoxesItemsControl

Constructors

AutoCompleteBoxesItemsControl()

Initializes a new instance of the AutoCompleteBoxesItemsControl class.

Declaration

cs-api-definition
public AutoCompleteBoxesItemsControl()

Fields

BoxesItemStyleProperty

Identifies the BoxesItemStyle dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty BoxesItemStyleProperty

Field Value

DependencyProperty

BoxesItemStyleSelectorProperty

Identifies the BoxesItemStyleSelector dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty BoxesItemStyleSelectorProperty

Field Value

DependencyProperty

BoxesItemTemplateProperty

Identifies the BoxesItemTemplate dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty BoxesItemTemplateProperty

Field Value

DependencyProperty

BoxesItemTemplateSelectorProperty

Identifies the BoxesItemTemplateSelector dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty BoxesItemTemplateSelectorProperty

Field Value

DependencyProperty

Properties

BoxesItemStyle

Gets or sets the style for items in the AutoCompleteBox.

Declaration

cs-api-definition
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

cs-api-definition
public StyleSelector BoxesItemStyleSelector { get; set; }

Property Value

StyleSelector

BoxesItemTemplate

Gets or sets the template used for the items in the AutoCompleteBox.

Declaration

cs-api-definition
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

cs-api-definition
public DataTemplateSelector BoxesItemTemplateSelector { get; set; }

Property Value

DataTemplateSelector

Methods

GetContainerForItemOverride()

Gets the container for the specified item in the AutoCompleteBox.

Declaration

cs-api-definition
protected override DependencyObject GetContainerForItemOverride()

Returns

DependencyObject

OnItemTemplateSelectorChanged(DataTemplateSelector, DataTemplateSelector)

Declaration

cs-api-definition
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

cs-api-definition
protected override void PrepareContainerForItemOverride(DependencyObject element, object item)

Parameters

element

DependencyObject

item

object