I'm building an application in C# using WPF. How can I bind to some keys?
Also, how can I bind to the Windows key?
|
feedback
|
|
I'm not sure of what you mean by "global" here, but here it goes (I'm assuming you mean a command at the application level, for example, Save All that can be triggered from anywhere by Ctrl + Shift + S.) You find the global UIElement of your choice, for example, the top level window which is the parent of all the controls where you need this binding. Due to "bubbling" of WPF events, events at child elements will bubble all the way up to the root of the control tree. Now, first you need
For the Windows Key, you use the right Key enumerated member, Key.LWin or Key.RWin
| ||||
|
feedback
|
|
If you're going to mix Win32 and WPF, here's how I did it:
You can get the virtual-key code for the hotkey you want to register here: http://msdn.microsoft.com/en-us/library/ms927178.aspx There may be a better way, but this is what I've got so far. Cheers! | |||
|
feedback
|
|
You might take a look at Scott Hanselman's BabySmash series and the BabySmash source. I don't know anything about WPF, but some of the blog posts in the series I linked discussed key bindings and limitations in WPF. | |||
|
feedback
|
|
I'm not sure about WPF, but this may help. I used the solution described in RegisterHotKey (user32) (modified to my needs of course) for a C# Windows Forms application to assign a CTRL-KEY combination within Windows to bring up a C# form, and it worked beautifully (even on Windows Vista). I hope it helps and good luck! | |||||||
feedback
|
|
This is a full working solution, hope it helps... Usage:
...
Class:
| |||
|
feedback
|
|
A co-worker wrote a sample on how to create a low-level keyboard hook to be used WPF. | |||||
feedback
|
|
Although RegisterHotKey is sometimes precisely what you want, in most cases you probably do not want to use system-wide hotkeys. I ended up using code like the following:
using System.Windows;
using System.Windows.Interop;
namespace WpfApp
{
public partial class MainWindow : Window
{
const int WM_KEYUP = 0x0101;
const int VK_RETURN = 0x0D;
const int VK_LEFT = 0x25;
public MainWindow()
{
this.InitializeComponent();
ComponentDispatcher.ThreadPreprocessMessage +=
ComponentDispatcher_ThreadPreprocessMessage;
}
void ComponentDispatcher_ThreadPreprocessMessage(
ref MSG msg, ref bool handled)
{
if (msg.message == WM_KEYUP)
{
if ((int)msg.wParam == VK_RETURN)
MessageBox.Show("RETURN was pressed");
if ((int)msg.wParam == VK_LEFT)
MessageBox.Show("LEFT was pressed");
}
}
}
}
| |||
|
feedback
|
|
However, you'll also need to respond to the | ||||
|
feedback
|