数据模板枚举
问候, 我正在 WPF 中开发我的应用程序。我的用户有不同类型:客户和供应商。 我想显示一些信息 - 每个用户都不同。我有一个名为 OperatorType 的属性,它是 OperatorTypeKind 枚举。我如何在 xaml 中为客户和供应商创建不同的数据模板
Greetings,
I'm developing my application in WPF. My users are of different types: Client and SUpplier.
I would like to display some information - different for each user. I have a Property called called OperatorType which is OperatorTypeKind enum. How can i create different DataTemplates in xaml for Client and Supplier
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找 DataTemplateSelector查看数据模板概述了解如何使用它。
You're looking for a DataTemplateSelector take a look at the Data Templating Overview for how to use it.