如何在两个不同的选项卡上显示相同的控件?

发布于 2024-07-13 00:34:37 字数 97 浏览 6 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(4

终弃我 2024-07-20 00:34:37

如果您不需要设计时支持,您可以简单地在运行时将 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.

鹤仙姿 2024-07-20 00:34:37

是的,我认为每个选项卡上都需要一个 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.

笑红尘 2024-07-20 00:34:37

是的,在每个选项卡上添加一个新实例。

Yes, add a new instance on each tab.

你的他你的她 2024-07-20 00:34:37

如果您想要设计师的全面支持,您将需要两个盒子。 如果用代码完成就足够了,您可以在表单加载时创建一个列表框,并手动将对其的引用添加到每个选项卡页。

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.

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