Back to Devexpress

GridViewBase.GroupValueTemplate Property

wpf-devexpress-dot-xpf-dot-grid-dot-gridviewbase-9d7fd380.md

latest2.7 KB
Original Source

GridViewBase.GroupValueTemplate Property

Gets or sets the template that defines the presentation of column values displayed within group rows. This is a dependency property.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public DataTemplate GroupValueTemplate { get; set; }
vb
Public Property GroupValueTemplate As DataTemplate

Property Value

TypeDescription
DataTemplate

A DataTemplate object that defines the presentation of group values.

|

Remarks

The template’s data context is a GridGroupValueData object.

Each column contains the GridColumn.GroupValueTemplate property that allows you to specify a custom template used to render its values displayed within group rows.

The GroupValueTemplate property allows you to modify group values only. Use the GridViewBase.GroupRowTemplate property to customize the entire group row.

The code sample below displays only column values in group rows:

xaml
<dxg:TableView.GroupValueTemplate>
    <DataTemplate>
        <TextBlock Text="{Binding Text}"/>
    </DataTemplate>
</dxg:TableView.GroupValueTemplate>

The following code sample displays values of multiple columns in a group row:

xaml
<dxg:TableView.GroupValueTemplate>
    <DataTemplate>
        <TextBlock>
            <TextBlock.Text>
                <MultiBinding StringFormat="{}{0} - {1}">
                    <Binding Path="RowData.Row.Id" />
                    <Binding Path="RowData.Row.Name" />
                </MultiBinding>
            </TextBlock.Text>
        </TextBlock>
    </DataTemplate>
</dxg:TableView.GroupValueTemplate>

See Also

Appearance Customization

Process Group Rows

GridViewBase Class

GridViewBase Members

DevExpress.Xpf.Grid Namespace