dhtmlxGrid 添加行号
一、添加行号,效果如下:
二、设置属性
设置gridView属性:gridView1 .IndicatorWidth=30;或是在属性窗口中设置值。(可根据实际大小设置IndicatorWidth大小)
三、添加事件
private void gridView1_CustomDrawRowIndicator(object sender, DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventArgs e)
{
if (e.Info.IsRowIndicator && e.RowHandle >= 0)
{
e.Info.DisplayText =( e.RowHandle+1).ToString();
//设置行号格式:左对齐
e.Info.Appearance.Options.UseTextOptions = true;
e.Info.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
}
}
四、行号搞定。
当然也可以设置行号列,使用数据源绑定行号值。