作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 Window.Resources
中有以下 StaticResource
<my:someobj x:Key="someResource" />
我在窗口内有一个用户控件。我需要在我的用户控件中引用上述资源,我该怎么做?我无法将资源移动到单独的字典文件。
<TextBlock Text="{Binding Source={StaticResource someResource}, Path=SomeText}" />
上面给出了未找到 someResource
的编译错误。我如何引用 someResource
?
最佳答案
一旦您清楚资源查找行为,您就会得到答案。来自 MSDN ,它是这样工作的:
- The lookup process checks for the requested key within the resource dictionary defined by the element that sets the property.
- The lookup process then traverses the logical tree upward, to the parent element and its resource dictionary. This continues until the root element is reached.
- Next, application resources are checked. Application resources are those resources within the resource dictionary that is defined by the Application object for your WPF application.
在您的情况下,window 不是 UserControl 的逻辑父级。因此,无法在那里找到资源。因此,您可以将资源移动到应用程序资源下,以便您的 UserControl 可以使用它。
<Application.Resources>
<my:someobj x:Key="someResource" />
</Application.Resources>
关于wpf - 如何在控件内引用用户控件主机的 StaticResource?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25465747/
我是一名优秀的程序员,十分优秀!