美好的一天!如果我选择了一些单元格,并且想将其参数传递给对话框,那么如何实现它,但是由于某种原因,它在DevExpress上不起作用。这是源代码,来自通常的标准...
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0)
{
DataGridViewRow row = dataGridView1.Rows[e.RowIndex];
new EditDrugs(row.Cells[0].Value.ToString()).ShowDialog();
}
}
答案 0 :(得分:0)
尝试:
int[] selRows = ((GridView)gctNhapHang.MainView).GetSelectedRows();
DataRowView selRow = (DataRowView (((GridView)gctNhapHang.MainView).GetRow(selRows[0]));
string value = selRows["ColumnName"].ToString()