Reputation: 35470
How do I re-write the following XAML:
<Button Command="{Binding NewSalesOrderCommand}" Content="New Order" Width="50" />
So that I could use an attached property on the Command object:
<Button Content="New Order" Width="50">
<Button.Command local:MyClass.MyAttachedProp="1">
...
</Button.Command>
</Button>
means what appears in place of 3 dots?
Upvotes: 2
Views: 269