gridcontrol页尾文本定制
Posted yzmn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gridcontrol页尾文本定制相关的知识,希望对你有一定的参考价值。
private void gridView1_CustomDrawFooterCell(object sender, DevExpress.XtraGrid.Views.Grid.FooterCellCustomDrawEventArgs e)
{
int dx = e.Bounds.Height;
Brush brush = e.Cache.GetGradientBrush(e.Bounds, Color.Wheat, Color.FloralWhite, LinearGradientMode.Vertical);
Rectangle r = e.Bounds;
ControlPaint.DrawBorder3D(e.Graphics, r, Border3DStyle.RaisedInner);
r.Inflate(-1, -1);
e.Graphics.FillRectangle(brush, r);
r.Inflate(-2, 0);
e.Appearance.DrawString(e.Cache, e.Info.DisplayText, r);
e.Handled = true;
}
以上是关于gridcontrol页尾文本定制的主要内容,如果未能解决你的问题,请参考以下文章
WPF datagrid/gridcontrol 中选中多行,复制粘贴到excel或其他文本编辑器中
DevExpress.XtraGrid.GridControl 实现自定义tooltip