vb.net - 选项卡控件?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望由设计者执行此操作:
选择标签页。这会带来
选项卡页对话框。
新标签页在最后。
所需的职位。
如果您希望通过代码执行此操作:
请查看 TabControl.TabPages.Insert
If you are looking to do this from the deseigner:
select TabPages. This will bring up
the tab pages dialog.
new tab page at the end.
the position required.
If you wish to do this from code:
Have a look at TabControl.TabPages.Insert