dotnetmonitor.com |
|
||||||||||||
| You access the LayoutSettings object offered at the
ToolStripLevel and cast to the appropriate type and access the properties there.
The following is an example of changing the flow direction of a ToolStrip.
toolStrip1.LayoutStyle = ToolStripLayoutStyle.Flow; ((FlowLayoutSettings)toolStrip1.LayoutSettings).FlowDirection = FlowDirection.BottomUp; |
||||||||||||
|
||||||||||||