先找到 此时间gridView1_CustomDrawRowIndicator

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();
            }
        }

  

相关文章:

  • 2021-10-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2021-05-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-02-11
  • 2022-02-23
  • 2021-11-13
  • 2021-06-22
  • 2022-12-23
相关资源
相似解决方案