Class DataGridBoundColumn
Represents a DataGrid column that can bind to a property in the grid's data source.
Inheritance
System.Object
DataGridBoundColumn
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.Controls.Data.dll
Syntax
[StyleTypedProperty(Property = "ElementStyle", StyleTargetType = typeof(FrameworkElement))]
[StyleTypedProperty(Property = "EditingElementStyle", StyleTargetType = typeof(FrameworkElement))]
public abstract class DataGridBoundColumn : DataGridColumn
Properties
| Improve this Doc View SourceBinding
Gets or sets the binding that associates the column with a property in the data source.
Declaration
public virtual Binding Binding { get; set; }
Property Value
Type | Description |
---|---|
Binding |
ClipboardContentBinding
The binding that will be used to get or set cell content for the clipboard. If the base ClipboardContentBinding is not explicitly set, this will return the value of Binding.
Declaration
public override Binding ClipboardContentBinding { get; set; }
Property Value
Type | Description |
---|---|
Binding |
Overrides
| Improve this Doc View SourceEditingElementStyle
Gets or sets the style that is used when rendering the element that the column displays for a cell in editing mode.
Declaration
public Style EditingElementStyle { get; set; }
Property Value
Type | Description |
---|---|
Style |
ElementStyle
Gets or sets the style that is used when rendering the element that the column displays for a cell that is not in editing mode.
Declaration
public Style ElementStyle { get; set; }
Property Value
Type | Description |
---|---|
Style |