29 references to WndProc
System.Windows.Forms (29)
winforms\Managed\System\WinForms\ColorDialog.cs (1)
280NativeMethods.WndProc hookProcPtr = new NativeMethods.WndProc(this.HookProc);
winforms\Managed\System\WinForms\CommonDialog.cs (1)
297NativeMethods.WndProc ownerProc = new NativeMethods.WndProc(this.OwnerWndProc);
winforms\Managed\System\WinForms\FileDialog.cs (1)
1000NativeMethods.WndProc hookProcPtr = new NativeMethods.WndProc(this.HookProc);
winforms\Managed\System\WinForms\FontDialog.cs (1)
555NativeMethods.WndProc hookProcPtr = new NativeMethods.WndProc(this.HookProc);
winforms\Managed\System\WinForms\NativeMethods.cs (17)
3326public WndProc lpfnPageSetupHook = null; 3327public WndProc lpfnPagePaintHook = null; 3352WndProc lpfnPrintHook { get; set; } 3353WndProc lpfnSetupHook { get; set; } 3384WndProc m_lpfnPrintHook; 3385WndProc m_lpfnSetupHook; 3411public WndProc lpfnPrintHook { get { return m_lpfnPrintHook; } set { m_lpfnPrintHook = value; } } 3412public WndProc lpfnSetupHook { get { return m_lpfnSetupHook; } set { m_lpfnSetupHook = value; } } 3443WndProc m_lpfnPrintHook; 3444WndProc m_lpfnSetupHook; 3470public WndProc lpfnPrintHook { get { return m_lpfnPrintHook; } set { m_lpfnPrintHook = value; } } 3471public WndProc lpfnSetupHook { get { return m_lpfnSetupHook; } set { m_lpfnSetupHook = value; } } 3507public WndProc lpCallback = null; 3621public WndProc lpfnHook; 3851public WndProc lpfnHook; 3868public WndProc lpfnHook; 4626public WndProc lpfnWndProc;
winforms\Managed\System\WinForms\NativeWindow.cs (2)
100NativeMethods.WndProc windowProc; 1477internal NativeMethods.WndProc windowProc;
winforms\Managed\System\WinForms\Printing\PageSetupDialog.cs (1)
355NativeMethods.WndProc hookProcPtr = new NativeMethods.WndProc(this.HookProc);
winforms\Managed\System\WinForms\Printing\PrintDialog.cs (2)
356NativeMethods.WndProc hookProcPtr = new NativeMethods.WndProc(this.HookProc); 373private bool ShowPrintDialog(IntPtr hwndOwner, NativeMethods.WndProc hookProcPtr, NativeMethods.PRINTDLG data) {
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (3)
1412public static IntPtr SetWindowLong(HandleRef hWnd, int nIndex, NativeMethods.WndProc wndproc) 1423public static extern IntPtr SetWindowLongPtr32(HandleRef hWnd, int nIndex, NativeMethods.WndProc wndproc); 1427public static extern IntPtr SetWindowLongPtr64(HandleRef hWnd, int nIndex, NativeMethods.WndProc wndproc);