如何将 TabControl 的项绑定到 wpf 中的可观察集合?
将 TabControl 的项绑定到 ObservableCollection 的最简单的示例是什么?
每个选项卡的内容都将具有唯一的数据,并且实际上该数据将具有其自己的绑定到项目组件的 observableCollections。
目前我有一个用户控件,我想在创建每个选项卡后立即将其设置为每个选项卡的内容。 我还需要在创建选项卡时动态设置这个新用户控件的数据上下文。 因此,本质上,我希望选项卡控件的可观察集合包含映射到每个选项卡中的数据的模型视图。
最重要的是,我需要在不违反 WPF 中的 MVVM 的情况下完成这一切! 有什么帮助吗?
非常感激!
What is the simplest example of binding the items of a TabControl to an ObservableCollection?
Each tab's content will have unique data, and indeed this data will have observableCollections of its own bound to the items components.
Currently I have a user control, which I would like to set as the content of each tab as soon as it is created. I also need to dynamically set the datacontext of this new user control when the tab is created. So, essentially, I would like the tabcontrol's observablecollection contain modelviews that map to the data in each tab.
On top of that, I need to do all this without violating MVVM in WPF! Any help?
Much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本示例:
Basic example :