This documentation is archived and is not being maintained.
FileDialog::HookProc Method
Visual Studio 2010
This member overrides CommonDialog::HookProc(IntPtr, Int32, IntPtr, IntPtr), and more complete documentation might be available in that topic.
Defines the common dialog box hook procedure that is overridden to add specific functionality to the file dialog box.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
[SecurityPermissionAttribute(SecurityAction::LinkDemand, Flags = SecurityPermissionFlag::UnmanagedCode)] protected: virtual IntPtr HookProc( IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam ) override
Parameters
- hWnd
- Type: System::IntPtr
The handle to the dialog box window.
- msg
- Type: System::Int32
The message received by the dialog box.
- wparam
- Type: System::IntPtr
Additional information about the message.
- lparam
- Type: System::IntPtr
Additional information about the message.
Return Value
Type: System::IntPtrReturns zero if the default dialog box procedure processes the message; returns a nonzero value if the default dialog box procedure ignores the message.
A hook procedure allows the user to connect or insert other routines into a routine or application for the purpose of debugging or enhancing functionality.
By default, the hook procedure centers the dialog box on the screen in response to a WM_INITDIALOG message.
Notes to InheritorsWhen overriding HookProc in a derived class, be sure to call the base class's HookProc method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, 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.
Show: