C# Set the current row based on the column name and column value
/// <summary> /// 根据GridView中某列的值与列名来设置当前行 /// </summary> /// <param name="gv">待设置当前行的GridView</param> /// <param name="FilterCellValue">某列的值</param> /// <param name="CellName">列名</param> public void SetFocusedRow(DevExpress.XtraGrid.Views.Grid.GridView gv, string FilterCellValue, string CellName) { for (int i = 0; i < gv.RowCount; i++) { if (FilterCellValue == gv.GetRowCellValue(i, CellName).ToString()) { gv.FocusedRowHandle = i; } } }
The above is the content of C# setting the current row based on the column name and column value. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!