添加一个按钮到Winforms DataGridView

本文关键字:按钮 Winforms DataGridView 一个 添加 | 更新日期: 2023-09-27 18:12:38

是否有一种方法可以在c#中添加控件(例如按钮)到Winforms DataGridView单元格?

(我的目标是在网格的不同单元格中放置各种控件…)

添加一个按钮到Winforms 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;
    }

DataGridViewButtonColumn是提供的列类型,它包含一个可单击的按钮。您可以在单元格中添加自己的控件:

http://msdn.microsoft.com/en-us/library/7tas5c80.aspx

请记住,这并不总是微不足道的,但我曾看到有人把整个DataGridView放入一个细胞-看起来很奇怪。

还有其他提供的列:

DataGridViewButtonColumn
DataGridViewCheckBoxColumn
DataGridViewComboBoxColumn
DataGridViewImageColumn
DataGridViewLinkColumn
DataGridViewTextBoxColumn

您可以在Visual Studio设计器中的列编辑器中更改它们,或者在代码中将它们添加到Columns集合中。

我会将它添加到设计器中并创建一个模板字段。你可以很容易地在datagridview

中放入你想要的任何东西

例子
<asp:DataGrid ID="somedatagrid" runat="server">
    <Columns>
        <asp:TemplateColumn>
            <ItemTemplate>
                <asp:Button ID="somebutton" runat="server" Text="some button" />
            </ItemTemplate>
        </asp:TemplateColumn>
    </Columns>
</asp:DataGrid>