vb.net - 选项卡控件?

发布于 2024-08-21 22:57:27 字数 77 浏览 10 评论 0原文

我在 Winform 上有一个选项卡控件。我想添加另一个页面,但我希望它出现在当前页面 1 和页面 2 之间,基本上我想插入它。我该怎么做?

I have a Tab Control on a Winform. I want to add another page but I want it to appear between the current page 1 and page 2, basically I want to insert it. How can I do this?

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

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

发布评论

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

评论(1

孤星 2024-08-28 22:57:27

如果您希望由设计者执行此操作:

  • 在 TabControl 属性下,
    选择标签页。这会带来
    选项卡页对话框。
  • 单击添加按钮。应该添加一个
    新标签页在最后。
  • 使用箭头将页面移动到
    所需的职位。

如果您希望通过代码执行此操作:

请查看 TabControl.TabPages.Insert

将标签页插入集合中
在指定的索引处。

If you are looking to do this from the deseigner:

  • Under the TabControl Properties,
    select TabPages. This will bring up
    the tab pages dialog.
  • Click the Add button. Should add a
    new tab page at the end.
  • Use the arrows to move the page to
    the position required.

If you wish to do this from code:

Have a look at TabControl.TabPages.Insert

Inserts a tab page into the collection
at the specified index.

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