Hi James,
You can do the following:
1) Derive from the RibbonControl class and override the ShowMinimizedRibbon() method:
public class MyRibbonControl : RibbonControl {
protected override void ShowMinimizedRibbon() { }
}
2) Minimize the ribbon control:
public partial class Form1 : DevExpress.XtraBars.Ribbon.RibbonForm {
public Form1() {
InitializeComponent();
ribbonControl1.Minimized = true;
}
}
Thanks, Nathan.
R&D, .NET Team, Developer Express Inc.
P.S. If you wish to receive direct assistance from our Support Team, use Support Center at http://www.devexpress.com/Support/Center