ClassDataGridBooleanColumn
A special DataGridTypedColumn implementation that presents boolean data.
Definition
Namespace:Telerik.UI.Xaml.Controls.Grid
Assembly:Telerik.WinUI.Controls.dll
Syntax:
public class DataGridBooleanColumn : DataGridTextColumn, IExportableColumn
Inheritance: objectRadDependencyObjectDataGridColumnDataGridTypedColumnDataGridTextColumnDataGridBooleanColumn
Implements:
Inherited Members
Constructors
DataGridBooleanColumn()
Initializes a new instance of the DataGridBooleanColumn class.
Declaration
public DataGridBooleanColumn()
Properties
SupportsCompositeFilter
When overriden in an inherited column gets a value whether this column shows two filter controls in its filtering flyout.
Declaration
protected override bool SupportsCompositeFilter { get; }
Property Value
Overrides
Methods
ClearEditorContentVisual(FrameworkElement)
Clears all bindings and content set to the CheckBox visualized when entering edit mode.
Declaration
public override void ClearEditorContentVisual(FrameworkElement editorContent)
Parameters
editorContent
FrameworkElement
The editor itself.
Overrides
CreateEditorContentVisual()
Creates an instance of a Checkbox used by the column when entering edit mode.
Declaration
public override FrameworkElement CreateEditorContentVisual()
Returns
FrameworkElement
An instance of the editor.
Overrides
CreateFilterControl()
Creates the DataGridBooleanFilterControl instance that allows filtering operation to be applied upon this column.
Declaration
protected override DataGridFilterControlBase CreateFilterControl()
Returns
Overrides
GetEditorType(object)
Gets the type of the editor for the DataGridBooleanColumn that is visualized when entering in edit mode.
PrepareCell(object, object, object)
Prepares the UIElement inside which the cell is visualized.
PrepareEditorContentVisual(FrameworkElement, Binding)
Prepares all bindings and content set to the CheckBox visualized when entering edit mode.
Declaration
public override void PrepareEditorContentVisual(FrameworkElement editorContent, Binding binding)
Parameters
editorContent
FrameworkElement
The editor itself.
binding
Binding
The binding set to the editor of the cell.
Overrides