如何使用枚举值来设置选项卡控件的选项卡项的标题?

发布于 2024-09-26 14:07:54 字数 199 浏览 2 评论 0原文

我想获取选项卡控件的选定选项卡项的标题并适当地激活另一个选项卡控件的另一个选项卡项,例如。选择选项卡控件 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁吢 2024-10-03 14:07:54

我建议使用 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>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文