如何使用枚举值来设置选项卡控件的选项卡项的标题?
我想获取选项卡控件的选定选项卡项的标题并适当地激活另一个选项卡控件的另一个选项卡项,例如。选择选项卡控件 TC1 的选项卡“A”/“B”将激活选项卡控件 TC2 上的选项卡“A”/“B”。
我希望“A”、“B”...成为枚举值,以便不使用字符串比较。那么,如何使用枚举值来设置选项卡项的标题?
[编辑]是的,我更喜欢直接在 XAML 代码中使用枚举值
I want to get the header of a selected tab-item of a tab-control and activate another tab-item of another tab-control appropriately, eg. select tab "A"/"B" of tab-control TC1 will activate tab "A"/"B" on tab-control TC2.
I want "A", "B", ... to be a enum value so that no string comparation is used. So, how can I use an enum value to set the tab-item's header?
[Edit] And yes, I prefer to use the enum value directly in XAML codes
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 WPF ValueConverter。
在 Xaml 中,
....
另一方面,如果您暗示要设置Tab 到 XAML 中硬编码的枚举的命名成员,您可以使用 Static MarkupExtension
I'd say use a WPF ValueConverter.
In Xaml,
<Tab Header={Binding PropThatReturnsTheEnum, Converter=EnumToDisplayTextConverter}>....</Tab>
On the other hand, if you're implying that you want to set the text of the tab to a named member of an enumeration hardcoded in XAML, you could use the Static MarkupExtension
<Tab Header={x:Static local:MyEnum.Member1}>... </Tab>