我正在使用Visual Basic 9(VS2008)
我想在用户点击“添加标签”按钮时创建新的标签。
Tab必须有一个停靠在其中的ListView控件。
如何以TabView控件编程方式将Tab添加到TabControl中?
答案 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