1

我正在使用 Visual Basic 9 (VS2008)

我想在用户单击“添加选项卡”按钮时创建新选项卡。

Tab 必须有一个停靠在其中的 ListView 控件。

如何以编程方式向 TabControl 添加一个 Tab 并在其中停靠一个 ListView 控件?

4

1 回答 1

4

它会像这样......

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

    // Create the listView
    Dim lstView As New ListView()
    lstView.Dock = DockStyle.Fill
    lstView.Items.Add("item 1") //item added for test
    lstView.Items.Add("item 2") //item added for test

    // Create the new tab page
    Dim tab As New TabPage("next tab")
    tab.Controls.Add(lstView) // Add the listview to the tab page

    // Add the tabpage to the existing TabCrontrol
    Me.TabControl1.TabPages.Add(tab)

End Sub
于 2009-02-01T00:18:35.410 回答