WPF TabControl 将额外的选项卡添加到绑定控件

发布于 2024-08-11 07:19:59 字数 156 浏览 5 评论 0原文

我有一个带有 ItemsSource 绑定的选项卡控件。 ...

我想在前面添加一个名为 All 的预定义选项卡,它聚合了所有其他选项卡,并且我还想在末尾添加一个名为 Add 的按钮,以便我可以添加新选项卡。 有一个简单的方法可以做到这一点吗?

谢谢, 劳尔

I have a Tab Control with a ItemsSource Binding.
...

I want to add a predefined tab to the front called All that has an aggregate of all the other tabs, and I would also like to add a button at the end called Add so I can add a new tab.
Is there an easy way of doing this ?

Thanks,
Raul

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

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

发布评论

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

评论(1

南烟 2024-08-18 07:19:59

最简单的方法是使用 MVVM (网址中的示例实际上包含绑定到 ViewModel 的 TabControl)。绑定 TabPage 的 ViewModel 可能会公开可观察的项目集合,其中第一项始终是保存聚合数据的 ViewModel 实例。以下所有项目都是其余选项卡页的 ViewModel 实例。您的 ViewModel 还将公开一个 ICommand AddTabPage ,它将一个新项目添加到 obeservablecollection 中。 TabPage 将自动获取此更改。您将有一个按钮,其 Command 属性绑定到该命令。

The easiest way is to go with MVVM (the example in the url acutally contains TabControl bound to a ViewModel). Your ViewModel that you bind your TabPages against could expose an observablecollection of items where the first item is always a ViewModel instance that holds you aggregate data. All follwing items are the ViewModel instances for the rest of the tabpages. Your ViewModel would also expose a ICommand AddTabPage wich adds a new item to the obeservablecollection. The TabPage will pick up this change automatically. You'd have a button whose Command property is bound to this command.

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