如何将当前窗口作为参数传递给命令?
我喜欢在XAML-markup中执行此操作:
<Button Command="CommandGetsCalled" CommandParameter="-this?-" />
答案 0 :(得分:60)
我可以通过两种方式来做到这一点:给窗口命名(通过x:Name
标签上的Window
属性,然后构造一个这样的绑定(假设名称为窗口是'ThisWindow'):
<Button Command="CommandGetsCalled" CommandParameter="{Binding ElementName=ThisWindow}" />
对于更通用的东西(不依赖于给当前Window命名),绑定可以像这样构造:
<Button Command="CommandGetsCalled" CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Window}}}" />
答案 1 :(得分:20)
您可以尝试绑定到RelativeSource
如果要将Button作为参数传递:
<Button Command="CommandGetsCalled"
CommandParameter="{Binding RelativeSource={RelativeSource Self}}" />
如果您想将Window作为参数传递:
<Button Command="CommandGetsCalled"
CommandParameter="{Binding RelativeSource={
RelativeSource AncestorType={x:Type Window}}}" />
答案 2 :(得分:2)
在我的情况下,所提供的答案都没有奏效。
这对我有用:
<window x:Name="myWindow">
<Button Command="Command" CommandParameter={x:Reference Name=myWindow}/>
</window>