C# WinForms: I would like to have two Toolbars But I also want them to be at the same line . I mean I do Not want one of them to be below or over the other them. so they will be in tow lines which is I do not want.
How can I do this?
Add a FlowLayoutPanel to your Form (AutoSize=True;AutoSizeMode=GrowAndShrink;Dock=Top;FlowDirection=LeftToRight;WrapContents=True). Then add the two ToolStrip controls to the FlowLayoutPanel (Dock=Top);
The ToolStrips may wrap, depending on the width of the Form.