我有一个包含项目列表的网格。列表中的一个项目是价格。 假设此列表中有5个项目,我需要总价,但它也需要显示在列表中。
<dxg:GridControl Grid.Row="1" SelectionMode="Row" ItemsSource="{Binding Temp}" dependencyProperties:BestFitColumn.IsEnabled="True" SelectedItems="{Binding SelectedTemp}">
<dxg:GridControl.Columns>
<dxg:GridColumn Header="{x:Static meta:MetaCommon.Price}" FieldName="PriceDisplay"/>
</dxg:GridControl.Columns>
由于尺寸的原因,我把代码缩小了 最好的方法是在列表中创建包含摘要价格的项目,还是有办法将摘要添加到页脚?
答案 0 :(得分:1)
<dxg:GridControl.TotalSummary>
<dxg:GridSummaryItem FieldName="Price" SummaryType="Sum"/>
</dxg:GridControl.TotalSummary>
这应该是你要找的 更多信息: https://documentation.devexpress.com/#WPF/CustomDocument6128