0
Comment puis-je faire une touche de raccourci dans la fenêtre principale dans WPF, par exemple quand je presse Ctrl +f pour ouvrir une nouvelle fenêtre?Raccourcis clavier dans C# WPF
Comment puis-je faire une touche de raccourci dans la fenêtre principale dans WPF, par exemple quand je presse Ctrl +f pour ouvrir une nouvelle fenêtre?Raccourcis clavier dans C# WPF
Regardez CommandBinding
<UserControl.CommandBindings>
<CommandBinding
Command="ApplicationCommands.Open"
Executed="_HandleApplicationOpenCommandExecute"/>
</UserControl.CommandBindings>
merci beaucoup vraiment – kartal