Represents a column that uses RadMultiColumnComboBox to edit a single selected value, or a list of selected values.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class GridViewMultiColumnComboBoxColumn : GridViewBoundColumnBase, INotifyPropertyChanged, IDataFieldDescriptor, IFieldDescriptor, IExportableColumn
Inheritance: objectGridViewColumnGridViewBoundColumnBaseGridViewMultiColumnComboBoxColumn
Implements:
Inherited Members
Constructors
public GridViewMultiColumnComboBoxColumn()
Fields
AutoCompleteModeProperty
DependencyProperty
Represents the AutoCompleteMode dependency property.
public static readonly DependencyProperty AutoCompleteModeProperty
AutoGenerateColumnsProperty
DependencyProperty
Identifies the AutoGenerateColumns dependency property.
public static readonly DependencyProperty AutoGenerateColumnsProperty
CanUserSearchInHiddenColumnsProperty
DependencyProperty
Represents the CanUserSearchInHiddenColumns dependency property.
public static readonly DependencyProperty CanUserSearchInHiddenColumnsProperty
CloseDropDownAfterSelectionInputProperty
DependencyProperty
Represents the CloseDropDownAfterInputSelection dependency property.
public static readonly DependencyProperty CloseDropDownAfterSelectionInputProperty
DisplayMemberPathProperty
DependencyProperty
Represents the DisplayMemberPath dependency property.
public static readonly DependencyProperty DisplayMemberPathProperty
DropDownHeightProperty
DependencyProperty
Represents the DropDownHeight dependency property.
public static readonly DependencyProperty DropDownHeightProperty
DropDownMaxHeightProperty
DependencyProperty
Represents the DropDownMaxHeight dependency property.
public static readonly DependencyProperty DropDownMaxHeightProperty
DropDownMaxWidthProperty
DependencyProperty
Represents the DropDownMaxWidth dependency property.
public static readonly DependencyProperty DropDownMaxWidthProperty
DropDownMinHeightProperty
DependencyProperty
Represents the DropDownMinHeight dependency property.
public static readonly DependencyProperty DropDownMinHeightProperty
DropDownMinWidthProperty
DependencyProperty
Represents the DropDownMinWidth dependency property.
public static readonly DependencyProperty DropDownMinWidthProperty
DropDownPlacementProperty
DependencyProperty
Represents the DropDownPlacement dependency property.
public static readonly DependencyProperty DropDownPlacementProperty
DropDownWidthProperty
DependencyProperty
Represents the DropDownWidth dependency property.
public static readonly DependencyProperty DropDownWidthProperty
HighlightMatchesProperty
DependencyProperty
Represents the HighlightMatches dependency property.
public static readonly DependencyProperty HighlightMatchesProperty
ItemsSourceProperty
DependencyProperty
Represents the ItemsSource dependency property.
public static readonly DependencyProperty ItemsSourceProperty
KeepDropDownOpenProperty
DependencyProperty
Represents the KeepDropDownOpen dependency property.
public static readonly DependencyProperty KeepDropDownOpenProperty
MatchCaseProperty
DependencyProperty
Represents the MatchCase dependency property.
public static readonly DependencyProperty MatchCaseProperty
NullTextProperty
DependencyProperty
Represents the NullText dependency property.
public static readonly DependencyProperty NullTextProperty
OpenDropDownOnInputProperty
DependencyProperty
Represents the OpenDropDownOnInput dependency property.
public static readonly DependencyProperty OpenDropDownOnInputProperty
SelectedValuePathProperty
DependencyProperty
Represents the SelectedValuePath dependency property.
public static readonly DependencyProperty SelectedValuePathProperty
SelectedValuesDisplaySeparatorProperty
DependencyProperty
Represents the SelectedValuesDisplaySeparator dependency property.
public static readonly DependencyProperty SelectedValuesDisplaySeparatorProperty
SelectionBoxesVisibilityProperty
DependencyProperty
Represents the SelectionBoxesVisibility dependency property.
public static readonly DependencyProperty SelectionBoxesVisibilityProperty
SelectionModeProperty
DependencyProperty
Represents the SelectionMode dependency property.
public static readonly DependencyProperty SelectionModeProperty
Properties
Gets or sets the AutoCompleteMode.
public SearchAutoCompleteMode AutoCompleteMode { get; set; }
Gets or sets a value indicating whether columns in the editor's popup are created automatically when the ItemsSource property is set.
public bool AutoGenerateColumns { get; set; }
true if the columns should be created automatically; otherwise, false. The default is true.
You can modify the Columns collection at run time regardless of whether it contains generated columns. However, if you specify columns in XAML, you should set AutoGenerateColumns to false.
Gets or sets a value that indicates if user can search in hidden columns.
public bool CanUserSearchInHiddenColumns { get; set; }
Gets or sets a value that indicates whether the drop down should be closed when selection is changed via input.
public bool CloseDropDownAfterSelectionInput { get; set; }
Gets the collection of GridViewColumns for the grid view in the editor's popup.
public ObservableCollection<GridViewColumn> Columns { get; }
Gets or sets the name or path of the property that is displayed for each data item.
public string DisplayMemberPath { get; set; }
Gets or sets the DropDown popup height.
public double DropDownHeight { get; set; }
Gets or sets the DropDown popup maximum height.
public double DropDownMaxHeight { get; set; }
Gets or sets the DropDown popup maximum width.
public double DropDownMaxWidth { get; set; }
Gets or sets the DropDown popup minimum height.
public double DropDownMinHeight { get; set; }
Gets or sets the DropDown popup minimum width.
public double DropDownMinWidth { get; set; }
Gets or sets the DropDown placement mode.
public PlacementMode DropDownPlacement { get; set; }
Gets or sets the DropDown popup width.
public double DropDownWidth { get; set; }
Gets or sets a value that indicates whether matched items will be highlighted.
public bool HighlightMatches { get; set; }
Gets or sets the ItemsSource that will be used to populate the RadMultiColumnComboBox editor.
public IEnumerable ItemsSource { get; set; }
ItemsSourceBinding
Binding
Gets or sets a binding that resolves the ItemsSource value, using bound item as binding source.
public Binding ItemsSourceBinding { get; set; }
Gets or sets a value that indicates whether drop down is closed when its popup loses focus.
public bool KeepDropDownOpen { get; set; }
Gets or sets value that indicates whether text matching is case sensitive.
public bool MatchCase { get; set; }
Gets or sets the text that is shown when selection is empty.
public string NullText { get; set; }
Gets or sets a value that indicates whether drop down gets open when the text field receives text input.
public bool OpenDropDownOnInput { get; set; }
Gets or sets the property path that is used to get the SelectedValue property of the SelectedItem property.
public string SelectedValuePath { get; set; }
Gets or sets a token separator that is used for displaying the list of selected values.
public string SelectedValuesDisplaySeparator { get; set; }
SelectionBoxesVisibility
Visibility
Gets or sets a value that indicates whether selection should be represented with selection boxes.
public Visibility SelectionBoxesVisibility { get; set; }
Gets or set the current selection mode.
public AutoCompleteSelectionMode SelectionMode { get; set; }
Methods
CreateCellEditElement(GridViewCell, object)
FrameworkElement
Creates the element for the cell in edit mode.
public override FrameworkElement CreateCellEditElement(GridViewCell cell, object dataItem)
FrameworkElement
Overrides:
CreateCellElement(GridViewCell, object)
FrameworkElement
Creates the element for the cell in display mode.
public override FrameworkElement CreateCellElement(GridViewCell cell, object dataItem)
FrameworkElement
Overrides: