DataGridColumn.CellStyle Property
Definition
Gets or sets the style that is used to render cells in the column.
public:
property System::Windows::Style ^ CellStyle { System::Windows::Style ^ get(); void set(System::Windows::Style ^ value); };
public System.Windows.Style CellStyle { get; set; }
member this.CellStyle : System.Windows.Style with get, set
Public Property CellStyle As Style
Property Value
The style that is used to render cells in the column. The registered default is null
. For information about what can influence the value, see DependencyProperty.
Remarks
To define a Style for a cell, specify a TargetType of DataGridCell.
A Style can be applied to a cell at the table, column, or cell level. To apply a Style to all cells in a column, set the DataGridColumn.CellStyle property, which takes precedence over the DataGrid.CellStyle property. To apply a Style to an individual cell, set the Style property directly on the DataGridCell object, which takes precedence over all other styles that you apply to the cell.