7 writes to LayoutSuspendCount
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (6)
9252LayoutSuspendCount = 1; 9266LayoutSuspendCount = 0; 10294LayoutSuspendCount++; 10301LayoutSuspendCount--; 10305LayoutSuspendCount--; 11567LayoutSuspendCount++;
System\Windows\Forms\Control.SuspendMutation.cs (1)
110LayoutSuspendCount--;
12 references to LayoutSuspendCount
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (7)
2497internal bool IsLayoutSuspended => LayoutSuspendCount > 0; 9234if (LayoutSuspendCount > 0) 10290if (LayoutSuspendCount > 0) 10292if (LayoutSuspendCount == 1) 10306if (LayoutSuspendCount == 0 && GetState(States.LayoutDeferred) && performLayout) 11568if (LayoutSuspendCount == 1) 11573Debug.Assert(LayoutSuspendCount > 0, "SuspendLayout: layoutSuspendCount overflowed.");
System\Windows\Forms\Control.SuspendMutation.cs (3)
100byte layoutSuspendCount = LayoutSuspendCount; 108if (LayoutSuspendCount == layoutSuspendCount && LayoutSuspendCount > 0)
System\Windows\Forms\Layout\DefaultLayout.cs (2)
859&& ((ancestorInDesignMode && parent.LayoutSuspendCount > 1) 860|| (!ancestorInDesignMode && parent.LayoutSuspendCount != 0)))