WPF 动态资源引用
您好,
我加载一个字符串 xaml,并将 DynamicResource 分配给背景属性。有没有办法获取动态资源的引用。
Background="{DynamicResource Color1}"
我想在运行时获取分配给依赖项属性的资源引用 请帮忙
HI
Am load a string xaml with DynamicResource assigned to a Background property. Is there a way to get the reference of the dynamic resource.
Background="{DynamicResource Color1}"
I want to get the resource reference assigned to a Dependency property at runtime
Pl help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 FrameworkElement.FindResource 方法
Use FrameworkElement.FindResource Method
DependencyProperty 在哪里定义的?在同一个窗口/用户控件上?如果您只想绑定到 DependencyProperty 的值,您可能需要使用常规的 {Binding ...} 语法。
示例 1:如果您要绑定到名为 myControl 的特定控件上的依赖属性,您可以像下面这样声明它。
示例 2:如果您不想依赖命名控件,因为它在 WPF 中非常简单,并且您正在引用 Window 上定义的属性,您可以执行如下操作。
Where is the DependencyProperty defined? On the same Window/UserControl? If you simply want to bind to the value of a DependencyProperty you probably want to use regular {Binding ...} syntax instead.
Example 1: If you are binding to a dependency property on a particular control named myControl you can declare it like below.
Example 2: If you don't want to rely on naming controls because it is so pasay in WPF and you are referencing a property defined on your Window you could do something like below.