如何以编程方式将Tab键添加到TabControl,其中ListView控件停靠在其中?

时间:2009-02-01 00:08:41

标签: c# vb.net listview tabs tabcontrol

我正在使用Visual Basic 9(VS2008)

我想在用户点击“添加标签”按钮时创建新的标签。

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

如何以TabView控件编程方式将Tab添加到TabControl中?

1 个答案:

答案 0 :(得分: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