从代码中添加依赖属性

时间:2013-11-19 09:45:57

标签: .net wpf dependency-properties attached-properties

我为Window类创建了自定义依赖项属性。我正在xaml中的T​​extBox上设置此属性,如下面的代码所示。 SampleProperty类扩展了Windows类,而不是Stackpanel。

<StackPanel l:SampleProperty.IsSamplePropertyField="true"/>

如何从我的代码后面设置此属性?

1 个答案:

答案 0 :(得分:1)

当您定义附加属性时,您创建了静态getter和setter方法,您可以在代码中使用它们:

SampleProperty.SetIsSamplePropertyField(myStackPanel, true);