【发布时间】:2019-11-06 23:21:51
【问题描述】:
我正在寻找一种在 CustomDrawGroupRow 事件中设置 GroupRow 文本而不设置 e.Handled = true 的方法,因为我还需要应用基础绘图:
this.gridView.CustomDrawGroupRow += (s, e) =>
{
/* set the GroupRow text here without using e.Handled = true */
}
我尝试过使用e.Graphics.DrawString,但我不能使用e.Appearance.BackColor,因为我需要设置e.Handled = true 来绘制string,它会禁用它
【问题讨论】:
标签: c# devexpress devexpress-windows-ui