WPF TabControl 将额外的选项卡添加到绑定控件
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用 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.