我需要通过单击行上的任意位置来选择GridView行。怎么做?
答案 0 :(得分:2)
如果您已从工具栏手动添加了网格,则可以将其Selection Mode
属性更改为FullRowSelect
。如果您以编程方式添加它,则可以使用
Grid.SelectionMode = DataGridViewSelectionMode.FullRowSelect
。
Grid.Rows[Grid.CurrentRow.Index].Cells["nameofcolumn"].Value.ToString()