How to get the selected row values of DevExpress XtraGrid?
问题 Consider the following picture I get the selected row values in the three textboxes shown in the figure when i click a cell using following code. void dataGridView1_CellClick_1(object sender, DataGridViewCellEventArgs e) { TBGRNo.Text = dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString(); TBSName.Text = dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString(); TBFName.Text = dataGridView1.Rows[e.RowIndex].Cells[2].Value.ToString(); } My Question is: how will I do the same thing in