我正在使用带有GridView的GridControl(v20.2.5)。我在代码中创建了一个SummaryItem,其属性如下。
new GridColumnSummaryItem(SummaryItemType.Count, SummaryMode.Selection, fieldName, Strings.RowsSelected, GridSummaryColumnTags.RowsSelected)
是否可以删除蓝色总和图标?
ovfsdjhp1#
我通过在CustomDrawFooterCell事件中将Icon设置为null来使它工作。
CustomDrawFooterCell
Icon
private void GridView_CustomDrawFooterCell(object sender, FooterCellCustomDrawEventArgs e) { if (e.Info != null && e.Info.Icon != null && e.Info.SummaryItem != null && e.Info.SummaryItem.Tag != null && e.Info.SummaryItem.Tag.ToString() == GridSummaryColumnTags.RowsSelected) { e.Info.Icon = null; } }
1条答案
按热度按时间ovfsdjhp1#
我通过在
CustomDrawFooterCell
事件中将Icon
设置为null来使它工作。