在遇到将选择更改事件从 a 绑定到我的 ViewModel 中的命令的问题之前,我认为{Binding DataContext.foo}
并且是相同的。{Binding foo}
ComboBox
我是这样做的...
<i:EventTrigger EventName="SelectionChanged">
<cmd:EventToCommand Command="{Binding DataContext.TestCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Page}}}" />
</i:EventTrigger>
仅指定时使用DataContext.TestCommand
作品TestCommand
似乎失败。我从来没有遇到过两者之间的区别,谁能解释一下?