GridControl.GroupValueTemplate Property
In This Article
Gets or sets a template that defines the appearance of column values in group rows. This is a dependency property.
Namespace: DevExpress.WinUI.Grid
Assembly: DevExpress.WinUI.Grid.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
[DP(null, Handler = "UpdateGroupSummarySettings")]
public DataTemplate GroupValueTemplate { get; set; }
#Property Value
Type | Description |
---|---|
Data |
A template that defines the appearance of column values in group rows. The template’s data context is a Group |
#Remarks
<dxg:GridControl ...>
<dxg:GridControl.GroupValueTemplate>
<DataTemplate x:DataType="dxg:GroupValueData">
<TextBlock Text="{x:Bind Value.ToString()}" VerticalAlignment="Center"/>
</DataTemplate>
</dxg:GridControl.GroupValueTemplate>
</dxg:GridControl>
See Also