Skip to main content
A newer version of this page is available. .

DataViewBase.CellStyle Property

Gets or sets the style applied to data cells displayed within a View. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.Core.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public Style CellStyle { get; set; }

Property Value

Type Description
Style

The style applied to data cells.

Remarks

Important

To format grid cells based on specific conditions, use Conditional Formatting to gain better performance. Refer to the following topic for more information - How to Conditionally Set Background and Foreground for Grid Rows and Cells.

The CellStyle property specifies a theme-independent style applied to cells within the grid. To specify a cell style for a single column, use the ColumnBase.CellStyle property.

TargetType

Optimized Mode

In optimized mode (the default setting), set TargetType to LightweightCellEditor.

<dxg:GridColumn>
    <dxg:GridColumn.CellStyle>
        <Style TargetType="dxg:LightweightCellEditor" />
    </dxg:GridColumn.CellStyle>
</dxg:GridColumn>
...
<dxg:TableView>
    <dxg:TableView.CellStyle>
        <Style TargetType="dxg:LightweightCellEditor" />
    </dxg:TableView.CellStyle>
</dxg:TableView>

Non-optimized Mode

If you disable the optimized mode, set TargetType to CellContentPresenter.

<dxg:GridColumn>
    <dxg:GridColumn.CellStyle>
        <Style TargetType="dxg:CellContentPresenter" />
    </dxg:GridColumn.CellStyle>
</dxg:GridColumn>
...
<dxg:TableView>
    <dxg:TableView.CellStyle>
        <Style TargetType="dxg:CellContentPresenter" />
    </dxg:TableView.CellStyle>
</dxg:TableView>

Data Binding

Cell elements contain EditGridCellData objects in their DataContext.

Use the following binding paths to access cell values, columns, and ViewModel properties:

  • Value - access the current cell value;
  • Column - access the current column;
  • RowData.Row.[YourPropertyName] - access a property of an object from the ItemsSource collection;
  • Data.[FieldName] - access column values in Server Mode, access unbound column values;
  • View.DataContext.[YourPropertyName] - access a property in a grid’s ViewModel.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CellStyle property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also