Show / Hide Table of Contents

Class DataGridColumn

Implements Data grid column

Inheritance
System.Object
DependencyObject
DataGridColumn
DataGridBoundColumn
DataGridTemplateColumn
Inherited Members
DependencyObject.DependencyObjectType
DependencyObject.IsSealed
DependencyObject.Equals(Object)
DependencyObject.GetHashCode()
DependencyObject.ClearValue(DependencyProperty)
DependencyObject.GetValue(DependencyProperty)
DependencyObject.ReadLocalValue(DependencyProperty)
DependencyObject.GetLocalValueEnumerator()
DependencyObject.SetValue(DependencyProperty, Object)
DependencyObject.OnPropertyChanged(DependencyProperty)
DependencyObject.CoerceValue(DependencyProperty)
DependencyObject.SetBinding(DependencyProperty, Binding)
DependencyObject.SetResourceReference(DependencyProperty, Object)
Namespace: EmptyKeys.UserInterface.Controls
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class DataGridColumn : DependencyObject

Constructors

DataGridColumn()

Initializes a new instance of the DataGridColumn class.

Declaration
public DataGridColumn()

Fields

ActualWidthProperty

The actual width property

Declaration
public static readonly DependencyProperty ActualWidthProperty
Field Value
Type Description
DependencyProperty

HeaderProperty

The header property

Declaration
public static readonly DependencyProperty HeaderProperty
Field Value
Type Description
DependencyProperty

HeaderStyleProperty

The header style property

Declaration
public static readonly DependencyProperty HeaderStyleProperty
Field Value
Type Description
DependencyProperty

IsAutoGeneratedProperty

IsAutomaticGenerated property

Declaration
public static readonly DependencyProperty IsAutoGeneratedProperty
Field Value
Type Description
DependencyProperty

MaxWidthProperty

The maximum width property

Declaration
public static readonly DependencyProperty MaxWidthProperty
Field Value
Type Description
DependencyProperty

MinWidthProperty

The minimum width property

Declaration
public static readonly DependencyProperty MinWidthProperty
Field Value
Type Description
DependencyProperty

SortDirectionProperty

The sort direction property

Declaration
public static readonly DependencyProperty SortDirectionProperty
Field Value
Type Description
DependencyProperty

SortMemberPathProperty

The sort member path property

Declaration
public static readonly DependencyProperty SortMemberPathProperty
Field Value
Type Description
DependencyProperty

VisibilityProperty

The visibility dependency property

Declaration
public static readonly DependencyProperty VisibilityProperty
Field Value
Type Description
DependencyProperty

WidthProperty

The width dependency property

Declaration
public static readonly DependencyProperty WidthProperty
Field Value
Type Description
DependencyProperty

Properties

ActualWidth

Gets or sets the actual width.

Declaration
public float ActualWidth { get; set; }
Property Value
Type Description
System.Single

The actual width.

DataGridOwner

Gets the data grid owner.

Declaration
protected DataGrid DataGridOwner { get; }
Property Value
Type Description
DataGrid

The data grid owner.

Header

Gets or sets the header.

Declaration
public object Header { get; set; }
Property Value
Type Description
System.Object

The header.

HeaderStyle

Gets or sets the header style.

Declaration
public Style HeaderStyle { get; set; }
Property Value
Type Description
Style

The header style.

IsAutoGenerated

Gets or sets a value indicating whether this instance is automatic generated.

Declaration
public bool IsAutoGenerated { get; }
Property Value
Type Description
System.Boolean

true if this instance is automatic generated; otherwise, false.

MaxWidth

Gets or sets the maximum width.

Declaration
public float MaxWidth { get; set; }
Property Value
Type Description
System.Single

The maximum width.

MinWidth

Gets or sets the minimum width.

Declaration
public float MinWidth { get; set; }
Property Value
Type Description
System.Single

The minimum width.

Parent

Gets or sets the parent.

Declaration
public UIElement Parent { get; set; }
Property Value
Type Description
UIElement

The parent.

SortDirection

Gets or sets the sort direction.

Declaration
public ListSortDirection? SortDirection { get; set; }
Property Value
Type Description
System.Nullable<ListSortDirection>

The sort direction.

SortMemberPath

Gets or sets the sort member path.

Declaration
public string SortMemberPath { get; set; }
Property Value
Type Description
System.String

The sort member path.

Visibility

Gets or sets the visibility.

Declaration
public Visibility Visibility { get; set; }
Property Value
Type Description
Visibility

The visibility.

Width

Gets or sets the width.

Declaration
public DataGridLength Width { get; set; }
Property Value
Type Description
DataGridLength

The width.

Back to top Generated by DocFX