Click here to Skip to main content
15,886,873 members
Articles / Programming Languages / C#

Easily Add a Ribbon Into WinForm Application

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

Downloads:  

  

Background

This ribbon is created by   . He 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. 

I have posted another article explaining how to use this ribbon with MDI Client Enabled WinForm at here:  Using Ribbon with MDI in WinForm Application

How to Use This Ribbon Control 

1. Download the Ribbon Source Code and obtain System.Windows.Forms.Ribbon.dll.

2. Create a blank WinForm Project.

Image 1

3. Add a Reference of System.Windows.Forms.Ribbon.dll to your project.
4. Right click on Reference at the Solution Explorer, choose Add.

Image 2

5. Locate the System.Windows.Forms.Ribbon.dll.

Image 3

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

Image 4

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

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
    }
}


8. Add three lines of code into Form1.Designer.cs.
private System.Windows.Forms.Ribbon ribbon1;
this.ribbon1 = new System.Windows.Forms.Ribbon();
this.Controls.Add(this.ribbon1); 

Image 5

9. Save and close Form1.Designer.cs.

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

Image 6

Image 7

11. Click on the Ribbon and Click Add Tab.

Image 8

12. Click on the newly added RibbonTab, then click Add Panel.

Image 9

13. Click on the newly added RibbonPanel, go to Properties. A set of available controls that can be added to the RibbonPanel.

Image 10

14. Try add some buttons into the RibbonPanel.

15. Click on the RibbonButtons, go to Properties. Lets try to change the image and the label text of the button.

Image 11

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

Image 12

18. Open the code of Form1.cs.

19. This is what we have initially:
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();
        }
    }
}


20. Add the Button Clicked event for the RibbonButton.
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.");
}

21. Press F5 to run the application. Done.

Image 13

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

Image 14

23. At the code of Form1.cs, change this line:
public partial class Form1 : Form

to this line:
public partial class Form1 : RibbonForm


A sample project that used to explained in this article is downloadable at top.



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.

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.