1.操作 :datagridView中有一列【按钮】列,当点击该列中的某个按钮时,使该列的所有按钮无效化2.问题:点击一个按钮,使之该列的全部按钮无效化
DataGridViewButtonCell DgvCell = this.dataGridView1.Rows[1].Cells[1] as DataGridViewButtonCell;DgvCell.Enabled = false;