6 references to DefaultWindowProc
System.Windows.Forms (6)
System\Windows\Forms\NativeWindow.cs (5)
609
Debug.Assert(
DefaultWindowProc
!= IntPtr.Zero, "We have active windows but no user window proc?");
617
PInvokeCore.SetWindowLong(handle, WINDOW_LONG_PTR_INDEX.GWL_WNDPROC,
DefaultWindowProc
);
618
PInvokeCore.SetClassLong(handle, GET_CLASS_LONG_INDEX.GCL_WNDPROC,
DefaultWindowProc
);
866
PInvokeCore.SetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_WNDPROC,
DefaultWindowProc
);
892
PInvokeCore.SetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_WNDPROC,
DefaultWindowProc
);
System\Windows\Forms\NativeWindow.WindowClass.cs (1)
137
_defaultWindProc =
DefaultWindowProc
;