3 writes to LayoutStyle
System.Windows.Forms (3)
winforms\Managed\System\WinForms\StatusStrip.cs (1)
138set { base.LayoutStyle = value; }
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
1318this.LayoutStyle = ToolStripLayoutStyle.Flow;
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (1)
202set { base.LayoutStyle = value; }
14 references to LayoutStyle
System.Windows.Forms (14)
winforms\Managed\System\WinForms\StatusStrip.cs (1)
137get { return base.LayoutStyle; }
winforms\Managed\System\WinForms\ToolStrip.cs (1)
963return (LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow) ? ToolStripGripDisplayStyle.Vertical
winforms\Managed\System\WinForms\ToolStripDropDown.cs (2)
1536if (LayoutStyle == ToolStripLayoutStyle.Flow) { 2107return LayoutStyle != ToolStripLayoutStyle.VerticalStackWithOverflow;
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (1)
201get { return base.LayoutStyle; }
winforms\Managed\System\WinForms\ToolStripGrip.cs (1)
107if (this.ParentInternal.LayoutStyle == ToolStripLayoutStyle.VerticalStackWithOverflow) {
winforms\Managed\System\WinForms\ToolStripItem.cs (2)
4806this.layoutStyle = toolStrip.LayoutStyle; 4814return (toolStrip.Size == size && toolStrip.LayoutStyle == layoutStyle && toolStrip.AutoSize == autoSize);
winforms\Managed\System\WinForms\ToolStripSeparator.cs (3)
292switch (parent.LayoutStyle) { 423if (parent.LayoutStyle != ToolStripLayoutStyle.HorizontalStackWithOverflow || parent.LayoutStyle != ToolStripLayoutStyle.VerticalStackWithOverflow) {
winforms\Managed\System\WinForms\ToolStripSplitStackLayout.cs (3)
199if (toolStrip.LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow) { 234if (toolStrip.LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow) { 516bool horizontal = (ToolStrip.LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow);