同一列的DataGridview单元格不能有不同的类型

本文关键字:不能 类型 单元格 DataGridview 一列 | 更新日期: 2023-09-27 18:05:25

我有一个datagridview,我有一个列,我想做的就是控制这个列中的单元格,有时使它成为combobox,有时使textBox ....等

我可以让一个列中的单元格只有一种类型,我可以在一个列中设置多个单元格类型吗?

同一列的DataGridview单元格不能有不同的类型

有两种方法:

  1. 将DataGridViewCell转换为存在的某个单元格类型。例如,将DataGridViewTextBoxCell类型转换为DataGridViewComboBoxCell类型。
  2. 创建一个控件并将其添加到DataGridView的控件集合中,设置其位置和大小以适合要作为宿主的单元格。

请参阅下面的示例代码,其中演示了这些技巧。

private void Form5_Load(object sender, EventArgs e)
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("name");
            for (int j = 0; j < 10; j++)
            {
                dt.Rows.Add("");
            }
            this.dataGridView1.DataSource = dt;
            this.dataGridView1.Columns[0].Width = 200;
            /*
             * First method : Convert to an existed cell type such ComboBox cell,etc
             */
            DataGridViewComboBoxCell ComboBoxCell = new DataGridViewComboBoxCell();
            ComboBoxCell.Items.AddRange(new string[] { "aaa","bbb","ccc" });
            this.dataGridView1[0, 0] = ComboBoxCell;
            this.dataGridView1[0, 0].Value = "bbb";
            DataGridViewTextBoxCell TextBoxCell = new DataGridViewTextBoxCell();
            this.dataGridView1[0, 1] = TextBoxCell;
            this.dataGridView1[0, 1].Value = "some text";
            DataGridViewCheckBoxCell CheckBoxCell = new DataGridViewCheckBoxCell();
            CheckBoxCell.Style.Alignment = DataGridViewContentAlignment.MiddleCenter;
            this.dataGridView1[0, 2] = CheckBoxCell;
            this.dataGridView1[0, 2].Value = true;
            /*
             * Second method : Add control to the host in the cell
             */
            DateTimePicker dtp = new DateTimePicker();
            dtp.Value = DateTime.Now.AddDays(-10);
            //add DateTimePicker into the control collection of the DataGridView
            this.dataGridView1.Controls.Add(dtp);
            //set its location and size to fit the cell
            dtp.Location = this.dataGridView1.GetCellDisplayRectangle(0, 3,true).Location;
            dtp.Size = this.dataGridView1.GetCellDisplayRectangle(0, 3,true).Size;
        }

从这里取