码迷,mamicode.com
首页 > 其他好文 > 详细

gridcontrol页尾文本定制

时间:2019-01-02 13:34:02      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:phi   sed   event   near   view   tom   hit   footer   idc   

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页尾文本定制

标签:phi   sed   event   near   view   tom   hit   footer   idc   

原文地址:https://www.cnblogs.com/yzmn/p/10208022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!