我想要一个可以只用一个值启动的 MarkupExtension,就像Binding
:
<TextBox Text="{Binding MyPath}"/>
代替<TextBox Text="{Binding Path=MyPath}">
在 WPF 中,这是通过 完成的ConstructorArgumentAttribute
,但在 Silverlight 中不存在。
我检查了属性的Path
属性,Binding
但没有找到任何应用于它的属性。
有任何想法吗?
我想要一个可以只用一个值启动的 MarkupExtension,就像Binding
:
<TextBox Text="{Binding MyPath}"/>
代替<TextBox Text="{Binding Path=MyPath}">
在 WPF 中,这是通过 完成的ConstructorArgumentAttribute
,但在 Silverlight 中不存在。
我检查了属性的Path
属性,Binding
但没有找到任何应用于它的属性。
有任何想法吗?