Click here to Skip to main content
Click here to Skip to main content

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

By , 20 Nov 2012
 
This is an old version of the currently published article.

The above download contains:

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

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 this ribbon is all about at here: A Professional Ribbon You Will Use (Now with orb!). However, that article doesn't describe 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 for:

  • 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 in your new WinForms project, after the first build, the target framework will initially switch to .NET Framework 4.0 Client Profile. You have to manually switch it back to .NET Framework 4.0. This is because Client Profile does not support System.Design which is 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. There are two methods to add the ribbon into the form. 
    • Using code to add the ribbon
    • Drag and drop

Using code to add the ribbon

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

Right click on Reference in Solution Explorer, choose Add.

Locate System.Windows.Forms.Ribbon.dll.

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

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

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);

Save and close Form1.Designer.cs.

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

Drag and drop

This is a simpler way to add the ribbon into a form. Simply create a new tab in the Toolbox. Drag and drop the DLL into the new tab. Click on any area of Toolbox. Right click > Add Tab.

Give the new tab a name.

Drag the DLL into the new tab area.

Drag the Ribbon into the form. That is it.

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

Click on the Ribbon and click Add Tab

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

Click on the newly added RibbonPanel, go to Properties. You will see a set of available controls that can be added to the RibbonPanel.

Try to add some buttons into the RibbonPanel.

Click on the RibbonButtons, go to Properties.

Let's try to change the image and the label text of the button.

This is how your ribbon looks like now.

Now, create the click event for the buttons. Click on RibbonButton, go to Properties, modify the Name of the button.

Open the code for Form1.cs.

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();
        }
    }
}

Add the Button's 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.");
}

Press F5 to run the application. Done.

You might want to inherit your Main Form into a RibbonForm to have extra features. Such as:

Note: Inherit the Main Form to RibbonForm will have some compatibility problems with some of the System.Windows.Forms controls.

In the code for Form1.cs, change this line:

public partial class Form1 : Form

to this line:

public partial class Form1 : RibbonForm

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


Part 3: Caution 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/redrawing the ribbon and reconnecting all the events that are associated with the ribbon.


Part 4: Using this Ribbon with an MDI Enabled WinForm 

The following guide will show how to apply this ribbon with an 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 the MDI client area. Therefore, we have to make some modifications on the DLL so that it will enable us to use the Ribbon with MDI fluently. The sample project described in this article can be downloaded at the top. You may download it, and view the code to have a better understanding of the workflow of implementing MDI with this ribbon control.

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

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. Find private void InstallHook(). Add a return statement at the beginning of the method so nothing is done.
  4. 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.
  5. Add this edited System.Windows.Forms.Ribbon.dll as reference and start building the application.

  6. 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 the ribbon control) with RibbonForm. Inheritance of RibbonForm is not compatible with the MDI client control.
  7. Create the Click event for the ribbon buttons.
  8. 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)
        {
                
        }
    }
  9. Next, set the MainForm's properties of IsMdiContainer to True.
  10. Create a few forms that needs to be opened in MainForm's MDI. You can name them anything, of course, but we take these as examples:
    • Form1.cs
    • Form2.cs
    • WelcomeForm.cs

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

    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();
    }
  11. These forms run normally, but you will notice there is an annoying Control Box appearing at the top of the Ribbon Bar control.
  12. To get rid of the Control Box, we need to rearrange these codes in the correct sequence.
  13. f1.ControlBox = false;
    f1.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
    f1.MaximizeBox = false;
    f1.MinimizeBox = false;
    f1.WindowState = FormWindowState.Maximized;
  14. First, we create another form named MdiChildForm.cs. Open the designer for MdiChildForm.
  15. Add the below code to MdiChildForm.Designer.cs at the right sequence:
  16. this.WindowState = System.Windows.Forms.FormWindowState.Normal;
    this.ControlBox = false;
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
    this.MaximizeBox = false;
    this.MinimizeBox = false;

    In the Load event of MdiChildForm, add this:

    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();
        }
    }
  17. Save and close MdiChildForm.cs and MdiChildForm.Designer.cs.
  18. Modify all forms (forms that will be loading in MainForm.cs's MDI) to inherit MdiChildForm.
  19. Form1.cs

    Change this:

    public partial class Form1 : Form

    to this:

    public partial class Form1 : MdiChildForm

    Form2.cs

    Change this:

    public partial class Form2: Form

    to this:

    public partial class Form2: MdiChildForm

    WelcomForm.cs

    Change this:

    public partial class WelcomForm: Form

    to this:

    public partial class WelcomForm: MdiChildForm
  20. Open forms and load it into the MDI client of MainForm.
  21. void cmdForm1_Click(object sender, EventArgs e)
    {
        Form1 f1 = new Form1();
        f1.MdiParent = this;
        f1.Show();
    }
  22. Done. A sample project (RibbonMdiSample.zip) that is used in this article can be downloaded at the top. 

Part 5: Alternative Ribbon 

You may also want to have a look at:


Part 6: How to Make a New Theme, Skin for this Ribbon Programmatically 

Default Theme

Example color theme of RibbonProfesionalRendererColorTableBlack.cs (ready made by ribbon author).

Another custom theme

  1. Open the source code. In Solution Explorer, there is a file/class named RibbonProfesionalRendererColorTable.cs. This class defines all the colors of each component in the ribbon.
  2. There is a class named RibbonProfesionalRendererColorTableBlack.cs. This is an example of a customized theme. (Shown above, picture 2.)

  3. To make your own color theme, create another class and inherit RibbonProfesionalRendererColorTable.cs.
  4. Change all the color objects into your desired colors.
  5. A sample is available inside the source code file.

  6. Example: (the first five colors have been filled for your reference).
  7. In this example, we'll name the new theme MyCoolThemeSkin.

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Drawing;
    
    namespace System.Windows.Forms
    {
        public class MyCoolThemeSkin
            : RibbonProfesionalRendererColorTable
        {
            public RibbonProfesionalRendererColorTableBlack()
            {
                #region Fields
    
                OrbDropDownDarkBorder = Color.Yellow;
                OrbDropDownLightBorder = Color.FromKnownColor(KnownColor.WindowFrame);
                OrbDropDownBack = Color.FromName("Red");
                OrbDropDownNorthA = FromHex("#C2FF3D");
                OrbDropDownNorthB = Color.FromArgb(201, 100, 150);
                OrbDropDownNorthC = 
                OrbDropDownNorthD = 
                OrbDropDownSouthC = 
                OrbDropDownSouthD = 
                OrbDropDownContentbg = 
                OrbDropDownContentbglight = 
                OrbDropDownSeparatorlight = 
                OrbDropDownSeparatordark = 
    
                Caption1 = 
                Caption2 = 
                Caption3 = 
                Caption4 = 
                Caption5 = 
                Caption6 = 
                Caption7 = 
    
                QuickAccessBorderDark = 
                QuickAccessBorderLight = 
                QuickAccessUpper = 
                QuickAccessLower = 
    
                OrbOptionBorder = 
                OrbOptionBackground = 
                OrbOptionShine = 
    
                Arrow = 
                ArrowLight = 
                ArrowDisabled = 
                Text = 
    
                RibbonBackground = 
                TabBorder = 
                TabNorth = 
                TabSouth = 
                TabGlow = 
                TabText = 
                TabActiveText = 
                TabContentNorth = 
                TabContentSouth = 
                TabSelectedGlow = 
                PanelDarkBorder = 
                PanelLightBorder = 
                PanelTextBackground = 
                PanelTextBackgroundSelected = 
                PanelText = 
                PanelBackgroundSelected = 
                PanelOverflowBackground = 
                PanelOverflowBackgroundPressed = 
                PanelOverflowBackgroundSelectedNorth = 
                PanelOverflowBackgroundSelectedSouth = 
    
                ButtonBgOut = 
                ButtonBgCenter = 
                ButtonBorderOut = 
                ButtonBorderIn = 
                ButtonGlossyNorth = 
                ButtonGlossySouth = 
    
                ButtonDisabledBgOut = 
                ButtonDisabledBgCenter = 
                ButtonDisabledBorderOut = 
                ButtonDisabledBorderIn = 
                ButtonDisabledGlossyNorth = 
                ButtonDisabledGlossySouth = 
    
                ButtonSelectedBgOut = 
                ButtonSelectedBgCenter = 
                ButtonSelectedBorderOut = 
                ButtonSelectedBorderIn = 
                ButtonSelectedGlossyNorth = 
                ButtonSelectedGlossySouth = 
    
                ButtonPressedBgOut = 
                ButtonPressedBgCenter = 
                ButtonPressedBorderOut = 
                ButtonPressedBorderIn = 
                ButtonPressedGlossyNorth = 
                ButtonPressedGlossySouth = 
    
                ButtonCheckedBgOut = 
                ButtonCheckedBgCenter = 
                ButtonCheckedBorderOut = 
                ButtonCheckedBorderIn = 
                ButtonCheckedGlossyNorth = 
                ButtonCheckedGlossySouth = 
    
                ItemGroupOuterBorder = 
                ItemGroupInnerBorder = 
                ItemGroupSeparatorLight = 
                ItemGroupSeparatorDark = 
                ItemGroupBgNorth = 
                ItemGroupBgSouth = 
                ItemGroupBgGlossy = 
    
                ButtonListBorder = 
                ButtonListBg = 
                ButtonListBgSelected = 
    
                DropDownBg = 
                DropDownImageBg = 
                DropDownImageSeparator = 
                DropDownBorder = 
                DropDownGripNorth = 
                DropDownGripSouth = 
                DropDownGripBorder = 
                DropDownGripDark = 
                DropDownGripLight = 
    
                SeparatorLight = 
                SeparatorDark = 
                SeparatorBg = 
                SeparatorLine = 
    
                TextBoxUnselectedBg = 
                TextBoxBorder = 
    
                #endregion
            }        
        }
    }
  8. Then, in the Load event of MainForm.cs, add this line:
  9. namespace RibbonDemo
    {
        public partial class MainForm : RibbonForm
        {
            public MainForm()
            {
                InitializeComponent();
                this.Load +=new EventHandler(MainForm_Load);
            }
    
            private void MainForm_Load(object sender, EventArgs e)
            {
                (ribbon1.Renderer as RibbonProfessionalRenderer).ColorTable = 
                    new MyCoolThemeSkin();
            }
        }
    }

Article Change Log:

27 Apr 2012

  • Content added: Part 6: How to Make a New Theme, Skin for this Ribbon Programmatically

15 Apr 2012

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

14 Apr 2012

  • Content added: Part 2: Step 3 - Added second 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)

About the Author

adriancs
Software Developer
Malaysia Malaysia
Member
Another guy from Sabah.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions


Discussions posted for the Published version of this article. Posting a message here will take you to the publicly available article in order to continue your conversation in public.
 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionColor Selector Toolmemberhackerspk17 May '13 - 5:19 
Here is a cool open source Color picker control. I think it should be the part of Ribbon Control
http://www.openwinforms.com/office2007_style_color_picker.html[^]
GeneralMy vote of 5membermpino13 May '13 - 20:59 
I followed in the past the developments of Jose Menendez Poo and it's a good idea to go on with the ribbon control development. Thank you very much.
GeneralMy vote of 5professionalAmol_B12 May '13 - 18:40 
Good Work
SuggestionVery goodmemberpo172511 May '13 - 5:09 
Very good already without bugs
 
now only missing the real OrbDropDown for the Orb2010 Smile | :)
( OrbDropDown visible is not working! )
AnswerRe: Very goodmembertoATwork11 May '13 - 5:22 
The Ribbon has a property OrbStyle. Just set it to "Office_2010". Or am I missing something?
GeneralRe: Very goodmemberpo172511 May '13 - 6:23 
That's not what I meant.
the OrbDropDown has the look of office 2007 should have the OrbDropDown of Office2010 for Orb2010
 
( OrbDropDown visible is not working when I change to false ! )
QuestionGreat Workmemberhackerspk11 May '13 - 3:06 
You are a life saver. Congratulation on new release.
Questionhow to force Panel to no collapse?memberJuan Manuel Romero Martin10 May '13 - 18:54 
Hello,
 
First of all, I would like to say that it is a GREAT WORK HERE. Thank you very much to share it.
 

Also, I would like ask how I can force a panel group to no collapse or shrink depending the window size. I would like to keep it visible all the time.
 
Thanks in advance.
AnswerRe: how to force Panel to no collapse?membertoATwork11 May '13 - 1:57 
As far as I know, this is not supported...
QuestionGreat workmemberrattlesnake888810 May '13 - 10:28 
Easy to implement in any project.
BugToolTip problemmemberpapat20061 May '13 - 3:13 
Hello, I'm sorry to ask you for another question. It's about tooltip.
I think i use it correctly, but i can't explain current working.
 
I add a tooltip on a "RibbonOrbRecentItem". When I launch my application, i can't see tooltip.
If I click on the RibbonOrbRecentItem item (with no action done), tooltip is see on all button of ribbon, on orb, but not on orb item.
 
Is there a way to show tooltip on RibbonOrbRecentItem only ?
 
Thanks you in advance,
Sincerely
BugRe: ToolTip problemmembertoATwork1 May '13 - 21:46 
Same here Frown | :(
I need to have a closer look...
AnswerRe: ToolTip problemmembertoATwork5 May '13 - 21:49 
Got the chance to take a quick look (I did not test it a lot). You can try to replace in RibbonItem.cs all occurances (each twice) of:
_TT.GetToolTip(this.Owner)
and
_TT.SetToolTip(this.Owner, this.ToolTip)
 
with:
_TT.GetToolTip(this.Canvas)
and
_TT.SetToolTip(this.Canvas, this.ToolTip)

AnswerRe: ToolTip problemmembertoATwork9 May '13 - 4:48 
OK. Now I did solve it. The previous solution was quite fine, but caused the tooltip to never show again after the item is clicked.
https://officeribbon.codeplex.com/SourceControl/changeset/21798[^]
GeneralRe: ToolTip problemmemberpapat200612 May '13 - 2:27 
Thanks very much, last release works fine.
SuggestionGreat workmemberAlaa-l24 Apr '13 - 23:13 
Thanks for this cool ribbon.
But i have some suggestions first seems like i cant add custom controls i make, like custom textbox for example if this is possible it will be great.
And another thing is if you add an auto hide button when you click it it slide to top of the form, maybe this behavior not for ribbon but it;s not a bad idea Big Grin | :-D
 
Thank you agine
AnswerRe: Great workmembertoATwork24 Apr '13 - 23:45 
You can add any control you like to the ribbon! Check the HostForm in the RibbonDemo.
QuestionRemove Objectmemberheinthuwin24 Apr '13 - 22:04 
How to remove button, OrbMenuItem ... from Ribbon?
QuestionRe: Remove ObjectmembertoATwork24 Apr '13 - 22:32 
A little more details, please.
QuestionRibbonForm and docked controlsmemberpapat200620 Apr '13 - 3:23 
Hello,
I like your component, but i have a question, is it possible to use RibbonForm and docked controls ?
 
I'm trying to add ribbon on a existing project, but when I dock my main panel into RibbonForm, at launch, I can only see my main panel, and border of window (in toolbox, there is only 5px !)
 
If dock = Left, by growing window, i can see part of ribbon !
 
Thanks you in advance,
Sincerely
AnswerRe: RibbonForm and docked controlsmembertoATwork20 Apr '13 - 3:25 
Are you using Win 7 with Aero enabled? Then use the RibbonFormBeta fix.
GeneralRe: RibbonForm and docked controlsmemberpapat200620 Apr '13 - 3:31 
Thanks very much, it works fine
QuestionDocked datagridview in child container cutting off top unless window size changedmemberMember 986972911 Apr '13 - 3:02 
Hi , this is working great , however I am running into a little annoyance. I am using this for an asset inventory frontend for a sql database. I have several child forms made that are pulling data into a gridview. Everything is working just as planned , however the top of the datagrid is being hidden under the ribbon unless i change the size of the form each time it goes to a new form. I have the datagridview docked inside the child form. If anyone has a fix for this that would be great. It is the only thing I am having an issue with . I have only been self teaching myself for about a year now so this is still a bit new and i fear I may not be able to find the issue myself.
QuestionRe: Docked datagridview in child container cutting off top unless window size changedmembertoATwork11 Apr '13 - 20:54 
Can you post a screenshot? I don't know what you mean by "...each time it goes to a new form".
GeneralMy vote of 5memberfalconwrestler9 Apr '13 - 7:56 
great write up great project. thanks!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 20 Nov 2012
Article Copyright 2012 by adriancs
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid