2 writes to _priorWindowProcHandle
System.Windows.Forms (2)
System\Windows\Forms\NativeWindow.cs (2)
303
_priorWindowProcHandle
= (void*)PInvokeCore.GetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_WNDPROC);
725
window._nextWindow.
_priorWindowProcHandle
= window._priorWindowProcHandle;
7 references to _priorWindowProcHandle
System.Windows.Forms (7)
System\Windows\Forms\NativeWindow.cs (7)
304
Debug.Assert(
_priorWindowProcHandle
is not null);
315
Debug.Assert(
_priorWindowProcHandle
!= _windowProcHandle, "Uh oh! Subclassed ourselves!!!");
501
if (
_priorWindowProcHandle
== null)
512
_priorWindowProcHandle
,
725
window._nextWindow._priorWindowProcHandle = window.
_priorWindowProcHandle
;
855
PInvokeCore.SetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_WNDPROC, (nint)
_priorWindowProcHandle
);
889
if (_nextWindow is null || _nextWindow.
_priorWindowProcHandle
!= _windowProcHandle)