HwndSource.AddHook Method
Adds an event handler that receives all window messages.
Assembly: PresentationCore (in PresentationCore.dll)
Parameters
- hook
- Type: System.Windows.Interop.HwndSourceHook
The handler implementation (based on the HwndSourceHook delegate) that receives the window messages.
Security Note
|
|---|
|
This method is not available in the Internet security zone. |
Most Win32 messages that reach the HwndSource have an approximate WPF equivalent. You use AddHook to handle the cases where the message has no WPF equivalent.
The HwndSourceHook delegate resembles the parameter profile of a Win32 main window procedure. All window messages that the main window procedure of the HwndSource parent window receives are also forwarded to the HwndSourceHook delegates.
Hooks are called in the order that they were added. If any hook returns handled=true for a message, the hooks after it in the call order are not called for that message.
-
UIPermission
to add handling. Associated enumeration: AllWindows
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Security Note