winform中DataGridView单元格的的基本设置

  • 设置控件选中一整行

设置DataGridView的属性SelectionMode为FullRowSelect 
这样就使DataGridView不是选择一个字段,而是选择一整行了 

  • 设置只能选中一行

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

  • 得到选中行某列的值

string str = dataGridView1.CurrentRow.Cells[2].Value.ToString();

  • 得到选中行的索引

int intRow = dataGridView1.SelectedCells[0].RowIndex;

  • 得到列的索引

int intColumn = dataGridView1.SelectedCells[0].ColumnIndex;

  • 改变行的颜色

dataGridView1.Rows[i].DefaultCellStyle.BackColor = Color.Green;

  • 设置单元格不可编辑

DataGridView.ReadOnly属性改为True;

发布了80 篇原创文章 · 获赞 32 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/dopdkfsds/article/details/97756640