c# winform DataGridView单击选中一整行,只能单选,不能选择多行,只能选择一行

设置DataGridView的属性SelectionMode为FullRowSelect 

这样就使DataGridView不是选择一个字段,而是选择一整行了 

设置DataGridView的属性MultiSelect为false 
这样就使DataGridView不可以选择多行,只能选择一行了post

想获得某列的值是要判断DataGridView是否有选中的行spa

if (dataGridView1.SelectedCells.Count != 0)
            {
                //获得选中行的索引
                int intRow = dataGridView1.SelectedCells[0].RowIndex;blog

                 //获得列的索引
                int intColumn = dataGridView1.SelectedCells[0].ColumnIndex;索引

                 //获得选中行某列的值
                string str = dataGridView1.CurrentRow.Cells[2].Value.ToString();
                MessageBox.Show(str);
            }string

相关文章
相关标签/搜索