如何以编程方式将选项卡添加到 TabControl,并将 ListView 控件停靠在其中?

发布于 2024-07-12 12:24:07 字数 162 浏览 4 评论 0原文

我正在使用 Visual Basic 9 (VS2008),

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

选项卡中必须停靠有一个 ListView 控件。

如何以编程方式将选项卡添加到 TabControl,并将 ListView 控件停靠在其中?

I'm using Visual Basic 9 (VS2008)

I want to create new Tabs as and when the user clicks an Add Tab button.

The Tab must have a ListView control docked inside it.

How to programmatically add a Tab to TabControl with a ListView control docked inside it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我爱人 2024-07-19 12:24:07

事情会是这样的......

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

It will go something like this...

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文