XAML中的备用语法,用于应用附加属性

时间:2013-03-11 09:32:10

标签: wpf xaml attached-properties

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

1 个答案:

答案 0 :(得分:1)

嗯,试试以下

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

有关详细信息,请查看here