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

标签 c# c#-4.0 datagridview c#-3.0 c#-2.0

好吧,我有一个 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;
        }

取自here

关于c# - 一列的 DataGridview 单元格不能有不同的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7055918/

相关文章:

c# - 如何设置 datagridview 中行/列标题单元格的背景颜色 - c# winform

c# 如何使用 Windows.Devices.Midi 将 MIDI 消息发送到内置的 Microsoft GS Wavetable Synth?

c# - 拒绝字符串变量中的字符串

c# - 拦截按钮点击页面加载

c# - 转换线程的扩展方法是否安全

c# - 有没有办法在datagridview中获取新添加的行?

c# - 获取两个列表之间的差异

c# - .NET 是否有 "Responsive Design + Server Side Components"(RESS) 框架

c# - 从 azure blob 存储下载 zip 后无法访问该 zip

.net - 键入时自动滚动 DataGridView