如何重写以下 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 个点的位置?