wpf-devexpress-dot-xpf-dot-grid-dot-tableview-94350c00.md
Gets or sets a template that describes conditional formats. This is a dependency property.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public DataTemplate FormatConditionGeneratorTemplate { get; set; }
Public Property FormatConditionGeneratorTemplate As DataTemplate
| Type | Description |
|---|---|
| DataTemplate |
A conditional format template.
|
You can define conditional formatting rules in a ViewModel and apply them to the GridControl. To do this, follow the steps below:
Create a collection of conditional formatting rules in a ViewModel.
Specify a data template that generates format conditions:
Assign the conditional formatting rule collection to the FormatConditionsSource property and the format condition template to the FormatConditionGeneratorTemplate property:
If you have multiple format condition templates, use the TableView.FormatConditionGeneratorTemplateSelector property to specify a template selector that chooses a template based on the format condition type.
Refer to the following help topic for more information: How to: Bind the Grid to a Collection of Conditional Formatting Rules.
See Also