Добавление кнопки в WinForms DataGridView

есть ли способ добавить элемент управления (например, кнопку) в ячейку WinForms DataGridView в C#?

(то, что я нацелен на то, чтобы поставить различные виды элементов управления в разных ячейках сетки...)

3 ответов


вы можете сделать такой....

есть два способа сделать это:

  • 1). Приведите DataGridViewCell к определенному типу ячейки, который существует. Для пример преобразования DataGridViewTextBoxCell в Типа DataGridViewComboBoxCell.
  • 2). Создайте элемент управления и добавьте его в коллекцию controls 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>