2

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

4

1 回答 1

1

嗯,试试下面

<Button Content="New Order" Width="50">
    <Button.Command local:MyClass.MyAttachedProp="1">
        <Binding Path="NewSalesOrderCommand" />
    </Button.Command>
</Button>

有关更多信息,请查看此处

于 2013-03-11T10:06:36.310 回答