winforms 从SummaryItem中删除图标

1cklez4t  于 2023-05-18  发布在  其他
关注(0)|答案(1)|浏览(98)

我正在使用带有GridView的GridControl(v20.2.5)。我在代码中创建了一个SummaryItem,其属性如下。

new GridColumnSummaryItem(SummaryItemType.Count, SummaryMode.Selection, fieldName, Strings.RowsSelected, GridSummaryColumnTags.RowsSelected)

是否可以删除蓝色总和图标?

ovfsdjhp

ovfsdjhp1#

我通过在CustomDrawFooterCell事件中将Icon设置为null来使它工作。

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;
    }
}

相关问题