已选择自定义datagridview单元格

时间:2016-12-11 21:23:17

标签: c# datagridview

当我按下回车键时,取决于选择哪个datagridview单元来运行不同的代码。

实施例

private void dataGridView1_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Enter)
        {
         if (dataGridView1.SelectedCells = dataGridView1.Cells[0])
         {
           dataGridView1.CurrentCell = dataGridView1[1, 0];
         }
         if (dataGridView1.SelectedCells = dataGridView1.Cells[1])
         {
           dataGridView1.CurrentCell = dataGridView1[2, 0];
         }
          if (dataGridView1.SelectedCells = dataGridView1.Cells[2])
         {
           form2 ss = new form2();
           ss.ShowDialog();

现在我收到错误错误System.Windows.Forms.DataGridView'不包含' Cells'的定义。没有扩展方法' Cells'接受类型' System.Windows.Forms.DataGridView'的第一个参数。可以找到(你错过了使用指令或程序集引用吗?)

0 个答案:

没有答案