3 writes to nextWindow
System.Windows.Forms (3)
winforms\Managed\System\WinForms\NativeWindow.cs (3)
404
window.previousWindow.
nextWindow
= window;
1212
window.previousWindow.
nextWindow
= window.nextWindow;
1219
window.
nextWindow
= null;
9 references to nextWindow
System.Windows.Forms (9)
winforms\Managed\System\WinForms\NativeWindow.cs (9)
403
Debug.Assert(window.previousWindow.
nextWindow
== null, "Last window in chain should have null next ptr");
1206
bool shouldRemoveBucket = (window.
nextWindow
== null);
1212
window.previousWindow.nextWindow = window.
nextWindow
;
1214
if (window.
nextWindow
!= null) {
1215
window.
nextWindow
.defWindowProc = window.defWindowProc;
1216
window.
nextWindow
.previousWindow = window.previousWindow;
1264
return ((window.PreviousWindow != null) && (window.
nextWindow
== null));
1415
if (
nextWindow
== null ||
nextWindow
.defWindowProc != windowProcPtr) {