Click here to Skip to main content
15,895,799 members
Articles / Programming Languages / C#

Easily Add a Ribbon Into a WinForms Application (C#)

Rate me:
Please Sign up or sign in to vote.
4.89/5 (256 votes)
22 Apr 2012Ms-PL2 min read 2.3M   38.1K   618  
Easily add ribbon to WinForm Application for .NET Framework 2.0, 3.5 & 4.0
This is an old version of the currently published article.

The above download contains:

  • Ribbon source code: RibbonSource0.4
  • Demo: RibbonDemo0.4
  • Sample: RibbonSample (Part2) - Sample project explained in this article [Part 2]
  • Sample: RibbonMdiSample (Part4) - Sample project explained in this article [Part 4]
  • Edited DLL: (edited)DLL - Modified DLL as described in [Part 4])

Image 1

Content


Part 1: Background 

The ribbon that is going to be used in this article is an open source project created by Jose Menendez Poo and SpiderMaster http://ribbon.codeplex.com/).

The ribbon creator has posted an article explaining what is this ribbon all about at here: A Professional Ribbon You Will Use (Now with orb!).

However, in that article doesn't describe about how to use it in your project. Therefore, this article will show how to use it. 

Original development platform: .NET Framework 2.0.  

Can be used in .NET Framework 3.5 and 4.0. 

Obtain Ribbon for .NET Framework 3.5 and 4.0

(Updated: 22 Apr 2012)  

To obtain the dll for .NET Framework 3.5 and 4.0, you can either convert the original source project of this ribbon from .NET Framework 2.0 to 4.0, or create a blank class project of .NET Framework 4.0.

If you choose to create a blank class, add all .cs files from the source code of System.Forms.Ribbon into your class, and add additional reference of

  • System.Design
  • System.Drawing
  • System.Windows.Forms
Then, You have to modify GlobalHook.cs. (refer [Part 4, Step 2])
Find private void InstallHook()
Add a return statement at the beginning of the method so nothing is done.

Next, please note that, at your new WinForm project, after the first build, the target framework will initially switch to .NET Framework 4.0 Client Profile. You have to manually switched it back to .NET Framework 4.0. This is because Client Profile does not support System.Design which required by the Ribbon to run internally.


Part 2: How to Use This Ribbon Control  

  1. Download the Ribbon Source Code and obtain System.Windows.Forms.Ribbon.dll.
  2. Create a blank WinForms project.
  3. Image 2

  4. There are two methods to add the ribbon into the form. 
  5. - 1st method: Using Code to add the ribbon
    - 2nd method: Drag and Drop


    1st Method: Using code to add the ribbon: 

    Add a Reference to System.Windows.Forms.Ribbon.dll in your project.

    Right click on Reference at the Solution Explorer, choose Add.

    Image 3

    Locate System.Windows.Forms.Ribbon.dll.

    Image 4

    Open the designer of the Main Form. In this example, Form1.Designer.cs.

    Image 5

    This is the initial code for Form1.Designer.cs:

    C#
    namespace WindowsFormsApplication1
    {
        partial class Form1
        {
            /// <summary>
            /// Required designer variable.
            /// </summary>
            private System.ComponentModel.IContainer components = null;
    
            /// <summary>
            /// Clean up any resources being used.
            /// </summary>
            /// <param name="disposing">true if managed
            /// resources should be disposed; otherwise, false.</param>
            protected override void Dispose(bool disposing)
            {
                if (disposing && (components != null))
                {
                    components.Dispose();
                }
                base.Dispose(disposing);
            }
    
            #region Windows Form Designer generated code
    
            /// <summary>
            /// Required method for Designer support - do not modify
            /// the contents of this method with the code editor.
            /// </summary>
            private void InitializeComponent()
            {
                this.components = new System.ComponentModel.Container();
                this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
                this.Text = "Form1";
            }
    
            #endregion
        }
    }

    Add three lines of code into Form1.Designer.cs.

    C#
    private System.Windows.Forms.Ribbon ribbon1;
    this.ribbon1 = new System.Windows.Forms.Ribbon();
    this.Controls.Add(this.ribbon1);

    Image 6

    Save and close Form1.Designer.cs.

    Double click and open Form1.cs, and now the Ribbon control is added into the main form.

    Image 7

    Image 8

    (UPDATE

    2nd Method: Drag and Drop

    This is more simpler way to add the ribbon into the form. Just simply create a new tab at Toolbox. Drag and drop the DLL into the new tab. 

    Click on any area of Toolbox. Right click > Add Tab. 

    Image 9 

    Give the new tab a name.

    Image 10

    Drag the DLL into the new tab area.

    Image 11 

    Drag the Ribbon into the Form. Thats it. 

    Image 12

    And this will automatically add a reference of System.Windows.Forms.Ribbon for you. 

     

  6. Click on the Ribbon and Click Add Tab
  7. Image 13

  8. Click on the newly added RibbonTab, then click Add Panel.
  9. Image 14

  10. Click on the newly added RibbonPanel, go to Properties. A set of available controls that can be added to the RibbonPanel.
  11. Image 15

  12. Try add some buttons into the RibbonPanel.
  13. Click on the RibbonButtons, go to Properties.
  14. Let's try to change the image and the label text of the button.

    Image 16

  15. This is how your ribbon looks like now.
  16. Now, create the click event for the buttons. Click on the RibbonButton, go to Properties, modify the Name of the button.
  17. Image 17

  18. Open the code of Form1.cs.
  19. This is what we have initially:
  20. C#
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    
    namespace WindowsFormsApplication1
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
        }
    }
  21. Add the Button Clicked event for the RibbonButton.
  22. C#
    public Form1()
    {
        InitializeComponent();
        cmdNew.Click += new EventHandler(cmdNew_Click);
        cmdSave.Click += new EventHandler(cmdSave_Click);
    }
    
    void cmdNew_Click(object sender, EventArgs e)
    {
        MessageBox.Show("Button \"New\" Clicked.");
    }
    
    void cmdSave_Click(object sender, EventArgs e)
    {
        MessageBox.Show("Button \"Save\" Clicked.");
    }
  23. Press F5 to run the application. Done.
  24. Image 18

  25. You might want to inherit your Main Form into a RibbonForm to have extra feature. Such as:
  26. Note: Inherit the Main Form to RibbonForm will have some compatible problems with some of System.Windows.Forms controls.

    Image 19

  27. At the code of Form1.cs, change this line:
  28. C#
    public partial class Form1 : Form

    to this line:

    C#
    public partial class Form1 : RibbonForm

A sample project (RibbonSample.zip) that used to explained in this article is downloadable at top. 


Part 3: Cautious While Using With Visual Studio 2010 

ALWAYS SAVE AND CLOSE straight away after you have finished designing the GUI editing of Main Form (The form that contains the ribbon control).

Don't Run (Press F5) The Application while the Main Form is open in Visual Studio 2010.

Or else, you might experience that the ribbon control has disappeared. You will end up redesigning/redraw the ribbon and reconnect all the events that associated with the ribbon.

 


Part 4: Using This Ribbon with MDI Enabled WinForm 

Image 20

The following guide will show how to apply this ribbon with MDI (Multi Document Interface) enabled WinForm.  

Simple Walkthrough 

I'll briefly explain what are we going to do here.

The original System.Windows.Forms.Ribbon.dll obtained from the source code is not fully compatible with System.Windows.Forms's MDI Client. You'll experience a delay while closing forms within MDI Client area. Therefore, we have to make some modification on the DLL so that is will enable us to use the Ribbon with MDI fluently. A sample project which describe in this article can be downloaded at top. You may download it, view the code to have a better understanding on the work flow of implementing MDI with this ribbon control. 

This guide will also show you how eliminate the control box (highlighted in the below picture) when a MDI child form is Maximize within the MDI Client control of the main form. This will help to make the appearance of the application look less weird. 

 Image 21

Start  

  1. Start off by modifying the original System.Windows.Forms.Ribbon.dll.
  2. Download the source code of the ribbon. Open GlobalHook.cs.
  3. Image 22

  4. Find private void InstallHook(). Add a return statement at the beggining of the method so nothing is done.
  5. Image 23

  6. Build the solution and obtain the newly edited System.Windows.Forms.Ribbon.dll. We'll use this to build our next MDI WinForm. Or, you can simply download it (which I've modified) at the top of this page.
  7. Add this edited System.Windows.Forms.Ribbon.dll as reference and start building the application.

  8. Let's first create a Ribbon application with the edited System.Windows.Forms.Ribbon.dll like this. Don't inherit the MainForm (the form that contains ribbon control) with RibbonForm. Inheritance of RibbonForm is not compatible with MDI Client Control.
  9. Image 24
  10. Create the Click Event for the Ribbon Buttons.

    C#
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
    
            cmdCloseForm.Click += new EventHandler(cmdCloseForm_Click);
            cmdForm1.Click += new EventHandler(cmdForm1_Click);
            cmdForm2.Click += new EventHandler(cmdForm2_Click);
            cmdWelcome.Click += new EventHandler(cmdWelcome_Click);
        }
    
        void cmdWelcome_Click(object sender, EventArgs e)
        {
    
        }
    
        void cmdForm2_Click(object sender, EventArgs e)
        {
    
        }
    
        void cmdForm1_Click(object sender, EventArgs e)
        {
    
        }
    
        void cmdCloseForm_Click(object sender, EventArgs e)
        {
                
        }
    }
  11. Next, set the MainForm's properties of IsMdiContainer to True.
  12. Image 25

  13. Create a few Forms that to be opened at MainForm's MDI. You can name it anything, of course, but we take these as example:
    • Form1.cs
    • Form2.cs
    • WelcomeForm.cs

    and the codes we use to open the forms in MDI might look like this:

    C#
    void cmdForm1_Click(object sender, EventArgs e)
    {
        Form1 f1 = new Form1();
        f1.MdiParent = this;
        f1.ControlBox = false;
        f1.MaximizeBox = false;
        f1.MinimizeBox = false;
        f1.WindowState = FormWindowState.Maximized;
        f1.Show();
    }
  14. This forms run normally, but you will notice there is a annoying Control Box appear at the top of Ribbon Bar control.
  15. Image 26

  16. To get rid of the Control Box, we need to rearrange these codes in the correct sequence.
  17. C#
    f1.ControlBox = false;
    f1.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
    f1.MaximizeBox = false;
    f1.MinimizeBox = false;
    f1.WindowState = FormWindowState.Maximized;
  18. First, we create another form named MdiChildForm.cs. Open the designer of MdiChildForm.
  19. Image 27

  20. Add the below code to MdiChildForm.Designer.cs at the right sequence:
  21. C#
    this.WindowState = System.Windows.Forms.FormWindowState.Normal;
    this.ControlBox = false;
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
    this.MaximizeBox = false;
    this.MinimizeBox = false;

    Image 28

    at the Load event of MdiChildForm, add this:

    C#
    public partial class MdiChildForm : Form
    {
        public MdiChildForm()
        {
            InitializeComponent();
            this.Load += new System.EventHandler(this.MdiChildForm_Load);
        }
    
        private void MdiChildForm_Load(object sender, EventArgs e)
        {
            this.ControlBox = false;
            this.WindowState = FormWindowState.Maximized;
            this.BringToFront();
        }
    }
  22. Save and Close MdiChildForm.cs and MdiChildForm.Designer.cs.
  23. Modify all forms (forms that will be load at MainForm.cs's MDI) to inherit MdiChildForm.
  24. Form1.cs

    Change this:

    C#
    public partial class Form1 : Form

    to this:

    C#
    public partial class Form1 : MdiChildForm

    Form2.cs

    Change this:

    C#
    public partial class Form2: Form

    to this:

    C#
    public partial class Form2: MdiChildForm

    WelcomForm.cs

    Change this:

    C#
    public partial class WelcomForm: Form

    to this:

    C#
    public partial class WelcomForm: MdiChildForm
  25. Open forms and load it into the MDI Client of MainForm.
  26. C#
    void cmdForm1_Click(object sender, EventArgs e)
    {
        Form1 f1 = new Form1();
        f1.MdiParent = this;
        f1.Show();
    }
  27. Done. A sample project (RibbonMdiSample.zip) that used in this article can be downloaded at top. 
  28. Image 29


Part 5: Alternative Ribbon 

You may also want to have a look at: 


Article Change Log:

15 Apr 2012

  • Content added: Part 1: Background - Emphasize that Ribbon appliable on .NET Framework 3.5 & 4.0 

14 Apr 2012

  • Content added: Part 2: Step 3 - Add 2nd Method to add Ribbon into Form  

12 Apr 2012 

  • Content added: Part 4: Using This Ribbon with MDI Enabled WinForm   

11 Apr 2012 

  • Initial Release.  

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer
Other Other
Programming is an art.

Comments and Discussions

Discussions on this specific version of this article. Add your comments on how to improve this article here. These comments will not be visible on the final published version of this article.