我为Window类创建了自定义依赖项属性。我正在xaml中的TextBox上设置此属性,如下面的代码所示。 SampleProperty类扩展了Windows类,而不是Stackpanel。
<StackPanel l:SampleProperty.IsSamplePropertyField="true"/>
如何从我的代码后面设置此属性?
答案 0 :(得分:1)
当您定义附加属性时,您创建了静态getter和setter方法,您可以在代码中使用它们:
SampleProperty.SetIsSamplePropertyField(myStackPanel, true);