Working with Backstage View
To enable the Backstage View in RadRibbonBar change the ApplicationMenuStyle property to BackstageView.
Enabling Backstage view mode
radRibbonBar1.ApplicationMenuStyle = Telerik.WinControls.UI.ApplicationMenuStyle.BackstageView;
RadRibbonBar1.ApplicationMenuStyle = Telerik.WinControls.UI.ApplicationMenuStyle.BackstageView
Adding and editing items and controls at design time
You can add two types of items to the BackstageVIew’s left panel at design time: BackstageButtonItem and BackstageTabItem. The BackstageButtonItem serves as a normal button while the BackstageTabItem has a page associated with it on which you can drag controls from the toolbox.
You have three options to add these items to the BackstageView at design time.
The first one is by using the Smart Tag:
The second one is using the RadItem Collection Editor to edit the Items collection:
The third one is using the context menu:
Adding and editing items and controls at runtime
You can also add these items as well as any other RadItem to the backstageview’s left panel at runtime via the Items collection:
Adding items programatically
radRibbonBarBackstageView1.Items.Add(new BackstageButtonItem("ButtonItem"));
radRibbonBarBackstageView1.Items.Add(new RadButtonElement("ButtonElement"));
radRibbonBarBackstageView1.Items.Add(new RadDropDownListElement());
RadRibbonBarBackstageView1.Items.Add(New BackstageButtonItem("ButtonItem"))
RadRibbonBarBackstageView1.Items.Add(New RadButtonElement("ButtonElement"))
RadRibbonBarBackstageView1.Items.Add(New RadDropDownListElement())
Adding controls to the pages
When you add BackstageTabItem to the backstage view’s left panel and select it, on the right side you have a BackstageViewPage on which you can arrange any type of controls.