我想将我的绑定Keybindings
到Button
我Keybindings
的Window
.
我的窗口(Name="Mainwindow
)输入绑定:
<Window.InputBindings>
<KeyBinding Key="Return" Command="{Binding KeyPressed}" CommandParameter="Next"/>
</Window.InputBindings>
我对按钮应该是什么样子的想法
<Button Content="Select Directory" Command="{Binding BrowseDirectory}">
<Button.InputBindings>
<KeyBinding Key="Return" Command="{Binding ElementName=Mainwindow, Path=InputBindings}"/>
</Button.InputBindings>
</Button>
可悲的是,Outwindow 没有显示任何类型的 Binderror 任何其他内容来给我一个关于它为什么不工作的线索。
所以基本上问题是:我怎样才能绑定Control.InputBindings
到另一个Control.InputBindings
?