如何:将未绑定列添加到 Data-Bound Windows 窗体 DataGridView 控件

DataGridView 控件中显示的数据通常来自某种数据源,但你可能想要显示一列不来自数据源的数据。 此类列称为未绑定列。 未绑定列可以采用多种形式。 通常,它们用于提供对数据行详细信息的访问权限。

下面的代码示例演示了如何在实现主从详情方案时,创建一个包含 详细信息 按钮的未绑定列,以显示与父表中特定行相关的子表。 若要响应按钮单击,请实现一个显示包含子表的窗体的 DataGridView.CellClick 事件处理程序。

Visual Studio 中支持此任务。 另请参阅 如何:使用设计器在 Windows 窗体 DataGridView 控件中添加和删除列。

private void CreateUnboundButtonColumn()
{
    // Initialize the button column.
    DataGridViewButtonColumn buttonColumn =
        new DataGridViewButtonColumn();
    buttonColumn.Name = "Details";
    buttonColumn.HeaderText = "Details";
    buttonColumn.Text = "View Details";

    // Use the Text property for the button text for all cells rather
    // than using each cell's value as the text for its own button.
    buttonColumn.UseColumnTextForButtonValue = true;

    // Add the button column to the control.
    dataGridView1.Columns.Insert(0, buttonColumn);
}
Private Sub CreateUnboundButtonColumn()

    ' Initialize the button column.
    Dim buttonColumn As New DataGridViewButtonColumn

    With buttonColumn
        .HeaderText = "Details"
        .Name = "Details"
        .Text = "View Details"

        ' Use the Text property for the button text for all cells rather
        ' than using each cell's value as the text for its own button.
        .UseColumnTextForButtonValue = True
    End With

    ' Add the button column to the control.
    dataGridView1.Columns.Insert(0, buttonColumn)

End Sub

编译代码

此示例需要:

另请参阅