Category / Section
How to open the BackStage on form load in WinForms RibbonControlAdv?
Show the Backstage
To show the BackStage on form load, ShowBackStage method of BackStageView can be used. The same has been demonstrated in the following code example:
C#
public partial class Form1: Form
{
public Form1()
{
InitializeComponent();
this.Load += Form1_Load;
}
// To show the backstage in the ribbon control.
private void Form1_Load(object sender, EventArgs e)
{
this.BackStageView1.ShowBackStage();
}
}
VB
Public Class Form1 Inherits RibbonForm Public Sub New() InitializeComponent() AddHandler Me.Load, AddressOf Form1_Load End Sub Private Sub Form1_Load(sender As Object, e As EventArgs) Me.BackStageView1.ShowBackStage() End Sub End Class

Fig i: Shows the BackStage open in form load
Reference link: https://help.syncfusion.com/windowsforms/ribbon/backstage