Devexpress之GridControl显示序列号
Posted 编程进行中......
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Devexpress之GridControl显示序列号相关的知识,希望对你有一定的参考价值。
先上图:
操作方法:
1、先设置一下gridview中属性:IndicatorWidth,一般为:40。如下图;(一般可以显示5位数字。如要更长显示,自己测试一下。)
2、找到gridview中的:CustomDrawRowIndicator事件,输入如下面代码:
1 private void gvMachine_CustomDrawRowIndicator(object sender, DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventArgs e) 2 { 3 e.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; 4 if (e.Info.IsRowIndicator) 5 { 6 if (e.RowHandle >= 0) 7 { 8 e.Info.DisplayText = (e.RowHandle + 1).ToString(); 9 } 10 else if (e.RowHandle < 0 && e.RowHandle > -1000) 11 { 12 e.Info.Appearance.BackColor = System.Drawing.Color.AntiqueWhite; 13 e.Info.DisplayText = "G" + e.RowHandle.ToString(); 14 } 15 } 16 }
以上是关于Devexpress之GridControl显示序列号的主要内容,如果未能解决你的问题,请参考以下文章
DevExpress 的Gridcontrol 之gridview 使用困惑?
如何在GridControl中显示图片列?控件DevExpress.XtraGrid.GridControl中显示图片列。