GridControl怎么获取最后一行

    var count = this.gridView_RightControl.RowCount;
    this.gridView_RightControl.SelectRow(count - 1);
    this.gridView_RightControl.FocusedRowHandle = count - 1;

猜你喜欢

转载自blog.csdn.net/caoyanchao1/article/details/121275858