在DotNetBar中的SuperGridControl 如何获取选择行的记录,谢谢各位高手们帮忙看看。
SuperGridControl?
------解决方案--------------------
SelectedElementCollection col = this.superGridControl1.PrimaryGrid.GetSelectedRows();
if (col.Count > 0)
{
GridRow row = col[0] as GridRow;
MessageBox.Show(row.Cells["LastName"].Value.ToString());
}