New to Telerik UI for WPFStart a free 30-day trial

Represents a class that provides interaction with the DropDown element of RadMultiColumnComboBox.

Definition

Namespace:Telerik.Windows.Controls.MultiColumnComboBox

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public abstract class DropDownContentManager

Inheritance: objectDropDownContentManager

Derived Classes: GridViewDropDownContentManager

Constructors

C#
protected DropDownContentManager()

Properties

DropDownElement

FrameworkElement

Gets the DropDown element.

C#
public abstract FrameworkElement DropDownElement { get; }

Gets the owner RadMultiColumnComboBox.

C#
public abstract RadMultiColumnComboBox Owner { get; }

Methods

Clean event subscriptions and other used resources.

C#
public virtual void CleanUp()

Initializes properties and wires events.

C#
public void Initialize(Popup dropDownPopup)
Parameters:dropDownPopupPopup

Finds the DropDown element in the visual tree and initializes the DropDownElement property.

C#
public virtual void InitializeDropDownContent(Popup dropDownPopup)
Parameters:dropDownPopupPopup

Initializes SelectionBridge that synchronizes selection between Owner and DropDownElement.

C#
public abstract ISelectionBridge InitializeSelectionBridge()
Returns:

ISelectionBridge

Invoked on CollectionView.CollectionChanged event occurrence.

C#
public abstract void OnCollectionViewCollectionChanged(QueryableCollectionView collectionView)
Parameters:collectionViewQueryableCollectionView

Invoked on MouseButtonDown event occurrence.

C#
public abstract void OnMouseDown(object sender, MouseButtonEventArgs args)
Parameters:senderobjectargsMouseButtonEventArgs

Invoked on MouseButtonUp event occurrence.

C#
public abstract void OnMouseUp(object sender, MouseButtonEventArgs args)
Parameters:senderobjectargsMouseButtonEventArgs

Invoked on PreviewMouseButtonDown event occurrence.

C#
public abstract void OnPreviewMouseDown(object sender, MouseButtonEventArgs args)
Parameters:senderobjectargsMouseButtonEventArgs

Refreshes the DropDownElement UI.

C#
public abstract void RefreshDropDownElement()

Sets the DropDownElement SelectionMode in accordance to the one of the Owner.

C#
public abstract void SetSelectionMode()