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

devexpress中gridcontrol 一些样式改变

时间:2014-08-05 21:57:30      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:style   color   strong   ar   size   res   app   text   

改变footer为扁平化效果

整个footer背景色
CustomDrawFooter
e.Appearance.BackColor = Color.Transparent;
e.Appearance.DrawBackground(e.Graphics, e.Cache, e.Bounds);
e.Handled = true;

单个列footer背景
CustomDrawFooterCell
e.Appearance.BackColor = Color.Lavender;
e.Appearance.DrawBackground(e.Graphics, e.Cache, e.Bounds);
e.Appearance.DrawString(e.Cache, e.Info.DisplayText, e.Bounds);
e.Handled = true;
会有几个像素的空隙、

 


分组(group)时去掉expand button(加号)
CustomDrawGroupRow
e.Appearance.FillRectangle(e.Cache, e.Bounds);
GridGroupRowInfo info = e.Info as GridGroupRowInfo;
e.Bounds.Inflate(-2, 0);
e.Appearance.DrawString(e.Cache, info.GroupText, e.Bounds);
e.Handled = true;

 

devexpress中gridcontrol 一些样式改变,布布扣,bubuko.com

devexpress中gridcontrol 一些样式改变

标签:style   color   strong   ar   size   res   app   text   

原文地址:http://www.cnblogs.com/ywkpl/p/3892915.html

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