Articles in this section
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

 

Shows the backstage open in form load

Fig i: Shows the BackStage open in form load

Reference link: https://help.syncfusion.com/windowsforms/ribbon/backstage

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Access denied
Access denied