如何在运行时从 FrameworkElement 中提取资源标题?
给定以下 XAML:
<Label Foreground="White" FontSize="24" Grid.Column="1" Grid.Row="2" Content="{DynamicResource DOB}"/>
我想从 Content 属性中提取字符串“DOB”并在运行时附加一个值,例如“DOB_1”(以提取资源键 DOB_1)。
我该怎么做?
Given the following XAML:
<Label Foreground="White" FontSize="24" Grid.Column="1" Grid.Row="2" Content="{DynamicResource DOB}"/>
I would like to pull the string "DOB" from the Content property and append a value at runtime, for example, "DOB_1" (to pull the resource key DOB_1).
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
动态资源与
ResourceReferenceExpressions
一起使用,这是一个内部类,这是行不通的。Dynamic resources work with
ResourceReferenceExpressions
which is an internal class, this is not going to work.