Keyboard hook w/ C# and WPF for minimized system tray application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T07:41:19Z http://stackoverflow.com/feeds/question/398830 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/398830/keyboard-hook-w-c-and-wpf-for-minimized-system-tray-application 3 Keyboard hook w/ C# and WPF for minimized system tray application Wade 2008-12-29T22:00:58Z 2008-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 &amp; T, for example.</p> <p>Thanks.</p> http://stackoverflow.com/questions/398830/keyboard-hook-w-c-and-wpf-for-minimized-system-tray-application/399117#399117 4 Answer by Andy for Keyboard hook w/ C# and WPF for minimized system tray application Andy 2008-12-29T23:48:26Z 2008-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>