3 writes to LayoutStyle
System.Windows.Forms (3)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (1)
121set => base.LayoutStyle = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1094LayoutStyle = ToolStripLayoutStyle.Flow;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
147set => base.LayoutStyle = value;
12 references to LayoutStyle
System.Windows.Forms (12)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (1)
120get => base.LayoutStyle;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
824return (LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow) ? ToolStripGripDisplayStyle.Vertical
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
1302if (LayoutStyle == ToolStripLayoutStyle.Flow) 1879return LayoutStyle != ToolStripLayoutStyle.VerticalStackWithOverflow;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
146get => base.LayoutStyle;
System\Windows\Forms\Controls\ToolStrips\ToolStripGrip.cs (1)
80if (ParentInternal.LayoutStyle == ToolStripLayoutStyle.VerticalStackWithOverflow)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemInternalLayout.ToolStripLayoutData.cs (2)
20_layoutStyle = toolStrip.LayoutStyle; 26=> toolStrip is not null && toolStrip.Size == _size && toolStrip.LayoutStyle == _layoutStyle && toolStrip.AutoSize == _autoSize;
System\Windows\Forms\Controls\ToolStrips\ToolStripSeparator.cs (1)
183return parent.LayoutStyle switch
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitStackLayout.cs (3)
161if (ToolStrip.LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow) 196if (ToolStrip.LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow) 493bool horizontal = (ToolStrip.LayoutStyle == ToolStripLayoutStyle.HorizontalStackWithOverflow);