时间:2021-07-01 10:21:17 帮助过:14人阅读
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();
}
}
四、行号搞定。
当然也可以设置行号列,使用数据源绑定行号值。