1 回答

TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超6個(gè)贊
嘗試將ElementName綁定的 替換為RelativeSource. 這對(duì)我有用:
<MenuItem Name="testing" Header="Move to Position 10" Command="{Binding TestCommand}" Tag="7">
<MenuItem.CommandParameter>
<MultiBinding Converter="{StaticResource AddConverter}">
<Binding Path="Tag" RelativeSource="{RelativeSource Self}"/>
<Binding Path="Tag" RelativeSource="{RelativeSource Self}"/>
</MultiBinding>
</MenuItem.CommandParameter>
</MenuItem>
另請(qǐng)注意,您應(yīng)該綁定到TestCommand屬性而不是字段testCommand。
- 1 回答
- 0 關(guān)注
- 146 瀏覽
添加回答
舉報(bào)