如何在两个不同的选项卡上显示相同的控件?
我正在使用 VB.NET,
我需要在 2 个不同的选项卡上显示相同的控件(ListBox)。
是否必须创建 2 个不同的 ListBox 实例?
I'm using VB.NET
I need same control (ListBox) to be displayed on 2 different tabs.
Is it mandatory to create 2 different ListBox instances?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您不需要设计时支持,您可以简单地在运行时将 ListBox 实例的父级从一个选项卡更改为另一个选项卡(当然,请确保正确设置定位)。
本质上,它是:
listBox1.Parent = tabControl1.TabPages[1];
但最终,您可能会发现仅拥有两个具有相同数据源的 ListBox 会更容易。
If you don't need design-time support you can simply, at runtime, change the ListBox instance's Parent from one tab to the other (making sure to set the positioning appropriately, of course).
Essentially, it's:
listBox1.Parent = tabControl1.TabPages[1];
In the end though, you'll probably find it easier to just have two ListBox's with the same data source.
是的,我认为每个选项卡上都需要一个 ListBox 控件。 如果它们具有相同的数据,您可以为两者使用相同的数据源。
Yes, I think you'll need a ListBox control on each tab. If they have the same data you can use the same DataSource for both though.
是的,在每个选项卡上添加一个新实例。
Yes, add a new instance on each tab.
如果您想要设计师的全面支持,您将需要两个盒子。 如果用代码完成就足够了,您可以在表单加载时创建一个列表框,并手动将对其的引用添加到每个选项卡页。
If you want full designer support, you'll need two boxes. If doing it in code is enough, you can create a single listbox on form load, and manually add a reference to it to each tab page.