WPF 在 tabcontrol 中创建 Tabitems 类型
我需要为我的选项卡控件创建 Tabitems 类型。 每个选项卡都有不同的内容和功能(Xaml 和代码隐藏)。 例如,我想创建: * 客户详细信息选项卡 - 包含客户详细信息字段。 * 配置选项卡 - 用于配置应用程序的字段。 * 统计选项卡 - 带有统计数据的表格和图表。
有时,每个 tabitem 类型的两个或三个选项卡将打开。 我不想为同一客户选项卡或其他选项卡一次又一次地复制粘贴 TabItem.Content。 我想制作一种标签。
创建此类 tabitem 类型的最佳方法是什么?
i need to create types of Tabitems to my tabcontrol.
each tab will have different content and functionalities (Xaml and code-behind).
For Example, i want to create:
* Customer details tab - with fields of customer detials.
* Configuration tab - fields for configuring the application.
* Statistics tab - table and graphs with statistics.
Sometimes two or three tabs of each tabitem type will be open.
i don't want to copy paste the TabItem.Content again and again for same customer tab or other.
i want to make a type of tab.
what is the best way to create such tabitem types ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常我将
TabItemViewModels
存储在ParentViewModel
中,并使用DataTemplate
来定义每个 ViewModel 应如何显示。Usually I store my
TabItemViewModels
in aParentViewModel
, and use aDataTemplate
to define how each ViewModel should be displayed.