我設立在Windows全局快捷鍵,使用RegisterHotKey方法RegisterHotkey僅在Windows 7的工作,而不是在XP,Server 2003中
public static int MOD_CONTROL = 0x2;
public static int WM_HOTKEY = 0x312;
RegisterHotKey(this.Handle, 0, MOD_CONTROL | MOD_NOREPEAT, 96);
// ctrl numpad0
處理此代碼是:
[DllImport("user32.dll")]
public static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vlc);
protected override void WndProc(ref Message m)
{
if (m.Msg == WM_HOTKEY)
{
MessageBox.Show("a hotkey is pressed"); //this also only shows in win7
if (m.WParam.ToInt32() == 0) //ctrl numpad0
{
MessageBox.Show("Hotkey ctrl numpad0 pressed");
// works fine in win7
}
}
base.WndProc(ref m);
}
在我的Windows 7 PC上可以正常工作,但是在XP或Windows Server 2003中並沒有。 任何想法出現錯誤?
哇!從來不知道這個功能存在!這爲我節省了很多麻煩。 – IDWMaster 2011-05-23 21:15:06