FrameworkElement.SetResourceReference(DependencyProperty, Object) 方法

定义

搜索具有指定名称的资源,并且为指定的属性设置一个指向该资源的资源引用。

public:
 void SetResourceReference(System::Windows::DependencyProperty ^ dp, System::Object ^ name);
public void SetResourceReference (System.Windows.DependencyProperty dp, object name);
member this.SetResourceReference : System.Windows.DependencyProperty * obj -> unit
Public Sub SetResourceReference (dp As DependencyProperty, name As Object)

参数

dp
DependencyProperty

资源绑定到的属性。

name
Object

资源的名称。

注解

资源引用类似于在 标记中使用 DynamicResource 标记扩展 。 资源引用创建一个内部表达式,用于在运行时延迟提供指定属性的值。 每当资源字典通过内部事件指示更改的值,或者每当当前元素重新父级 (父更改将更改字典查找路径) 时,都会重新计算表达式。

适用于

另请参阅