How to control whether a toolbar appears above or below a menu bar?
If you add a toolbar and a menubar to the designer, they both get the Dock property set to Top by default. It can be quite frustrating to control which one appears on top of the other using the designer.
In InitializeComponent(), the following 2 lines add the controls to the main form:
this.Controls.Add(this.smartToolBar2);
this.Controls.Add(this.smartMenuBar1);
Using the order above, the toolbar will be on top of the menu bar.
