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