int button = e.ColumnIndex; // 这里的button,表示表示选定的当前列数,从0开始。
int i = this.dgCabinetView.CurrentRow.Index; // 这里表示当前选定的行
int.TryParse(this.dgCabinetView.Rows[i].Cells["cabinetNum"].Value.ToString(), out int cabinetNo); // 获取到当前柜子NUM
int.TryParse(this.dgCabinetView.Rows[i].Cells["cabinetFloor"].Value.ToString(), out int cabinetFloor); // 获取到当前柜子FLOOR
int.TryParse(this.dgCabinetView.Rows[i].Cells["cabinetAisle"].Value.ToString(), out int cabinetAisle); // 获取到当前柜子AIELS
this.cabinet.Name = this.dgCabinetView.Rows[i].Cells["cabinetName"].Value.ToString(); // 获取到当前柜子NAME
Cell["列名"],这里的“列名”不是显示在表头上的名字,而是定义该列的.Name字段。
这是操作checkBox,如果是自己在dataGridview中定义的checkBox,则要设置checkBoxColumn的属性,FlatStyle = System;ThreeState=false;
为了点击一下变成“勾选”状态,再点就变“原状态”。
if (Convert.ToBoolean(this.dgCabinetView.Rows[i].Cells["check"].Value) == false)
{
this.dgCabinetView.Rows[i].Cells["check"].Value = true;
}
else
{
this.dgCabinetView.Rows[i].Cells["check"].Value = false;
}