Keyboard hook w/ C# and WPF for minimized system tray application - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:41:19Zhttp://stackoverflow.com/feeds/question/398830http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/398830/keyboard-hook-w-c-and-wpf-for-minimized-system-tray-application3Keyboard hook w/ C# and WPF for minimized system tray applicationWade2008-12-29T22:00:58Z2008-12-29T23:48:26Z
<p>I have a WPF application that I minimize to the system tray through this.Hide() and System.Windows.Forms.NotifyIcon. When it's minimized, I want to have a keyboard hook maximize the application. How do I register a keyboard hook like Windows-Button & T, for example.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/398830/keyboard-hook-w-c-and-wpf-for-minimized-system-tray-application/399117#3991174Answer by Andy for Keyboard hook w/ C# and WPF for minimized system tray applicationAndy2008-12-29T23:48:26Z2008-12-29T23:48:26Z<p>If you don't mind Win32 API calls, I'd say your best bet is to call <a href="http://msdn.microsoft.com/en-us/library/ms646309%28VS.85%29.aspx" rel="nofollow">RegisterHotKey</a>. You pass it the modifier and key to catch, then a <code>WM_HOTKEY</code> is sent to the HWND that you passed in originally.</p>