如何重写以下XAML:
<Button Command="{Binding NewSalesOrderCommand}" Content="New Order" Width="50" />
这样我就可以在Command对象上使用附加属性:
<Button Content="New Order" Width="50">
<Button.Command local:MyClass.MyAttachedProp="1">
...
</Button.Command>
</Button>
表示代替3个点的东西?
答案 0 :(得分:1)
嗯,试试以下
<Button Content="New Order" Width="50">
<Button.Command local:MyClass.MyAttachedProp="1">
<Binding Path="NewSalesOrderCommand" />
</Button.Command>
</Button>
有关详细信息,请查看here。