一些快捷键的操作,可以极大地方便了应用的操作。
目前我经常用的一些快捷键:
1、ESC:关闭窗体
2、Ctrl+N:新建
3、F2:编辑
3、Delete:删除
4、F5:刷新
5、Ctrl+S:保存
有些快捷键,适合针对窗体直接设置。
<Window.InputBindings>
<KeyBinding Command="{Binding AddCommand}" Gesture="Ctrl+N" />
<KeyBinding Command="{Binding SaveCommand}" Gesture="Ctrl+S" />
</Window.InputBindings>
有些快捷键,可以针对列表直接设置,这样的话,如果有多个列表,可以同时支持快捷键操作。
<ListBox.InputBindings>
<KeyBinding Command="{Binding EditCommand}" Gesture="F2" />
<KeyBinding Command="{Binding DeleteCommand}" Gesture="Delete" />
<KeyBinding Command="{Binding RefreshCommand}" Gesture="F5" />
</ListBox.InputBindings>
标签:Ctrl,列表,添加,窗体,应用,WPF,快捷键
From: https://www.cnblogs.com/wzwyc/p/17817294.html