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

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

By , , 11 May 2013
 
  • Download Contents: Precompiled DLL, Source Code and Demo App 
  • Supports Visual Studio 2008, 2010, 2012 
  • Supports .NET Framework 2.0, 3.5 4.0, 4.5 
  • Released on 10 May 2013  

 Note: Releases (13Jan2013) and newer are containing a ThemeBuilder which enables Ribbon to load/change Theme Easily. See ThemeBuilderForm inside the Demo.  

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. However, the original author of the ribbon has stopped support of it. A group of fans of this ribbon re-host and continue to develop/enhance and support the ribbon. 

The original 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.

Old Site: http://ribbon.codeplex.com (By original author, but has stopped support) 

New Site: http://officeribbon.codeplex.com (Re-host by fans of the ribbon) 

All releases starting (10 Jan 2013) are supporting

  • Visual Studio 2008, 2010 and 2012. 
  • .NET Framework 2.0, 3.5, 4.0 and 4.5 


Part 2: How to Use this Ribbon Control    

Reminder: Please note that this ribbon does not work on .Net 3.5 Client Profile and .NET 4.0 Client Profile. You have to switch the target framework to .NET 3.5 or .NET 4.0. When you first create a project, Visual Studio might initially set the target framework to Client Profile

1. Get System.Windows.Forms.Ribbon35.dll from download.

2. Create a blank WinForms project.

3. Add Ribbon into Visual Studio Toolbox.

Right Click on Toolbox > Add Tab.

Give the new tab a name "Ribbon".

Right Click on the New Tab [Ribbon] > Choose Items...

[Browse...] Where are you? System.Windows.Forms.Ribbon35.dl?

There you are... Gotcha... Select it...

Only [Ribbon] can be dragged into Form. Others, as the picture below said, they are not needed to exist in toolbox. However, its not going to harm your computer or project if you select all the items belongs to ribbon (by default). Its up to you.

And finally, what you're going to do is just...

Another Way

Manually code it behind.

You can add the ribbon into WinForm too with code behind.

Add a reference of  System.Windows.Forms.Ribbon35.dll into your project. Build the the solution.  

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

Add these three lines of code 

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

into Form1.Designer.cs 

private void InitializeComponent()
{
    ribbon1 = new System.Windows.Forms.Ribbon();
    this.components = new System.ComponentModel.Container();
    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    this.Text = "Form1";
    this.Controls.Add(ribbon1);
}
private System.Windows.Forms.Ribbon ribbon1; 

Save and Close Form1.Designer.cs.  

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

 

Lets continue... 

4. Click on the Ribbon and click Add Tab.  

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

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

You might not able to see the extra command links of "Add Button", "Add ButtonList", "Add ItemGroup"... etc at the Properties Explorer.  

 

Right click at the Properties Explorer and Tick/Check the [Commands].  

 

 

7. Try to add some buttons into the RibbonPanel.

8. Click on the RibbonButton, go to Properties

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

10. This is how your ribbon looks like now.

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

12. Click on the RibbonButton, go to properties > Click on Events > Double Click on event of Click

 

13. Events created.

public Form1()
{
    InitializeComponent();
}

void cmdNew_Click(object sender, EventArgs e)
{
    MessageBox.Show("Button \"New\" Clicked.");
}

void cmdSave_Click(object sender, EventArgs e)
{
    MessageBox.Show("Button \"Save\" Clicked.");
}

14. Press F5 to run the application. Done.

15. 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. (especially MDI Client Control)   This problem is solved in released version 10 May 2013. 

16. In the code for Form1.cs, change inheritance of Form this line:

public partial class Form1 : Form

to RibbonForm 

public partial class Form1 : RibbonForm


Part 3: Caution While Using With Visual Studio 2010 

... deleted ....  


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. 

Note: In previous version of Ribbon, inheritance of RibbonForm is not supported well with MDI Enabled WinForm. This problem is solved in released version of 10 May 2013

Start  

1.  Lets design a ribbon winform something like this as example. In the properties window, set IsMdiContainer to True

 

2. Create another simple another form that will be loaded into the MDI Container of MainForm

3. At code behind of Form1, add in the below codes:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    protected override void OnLoad(EventArgs e)
    {
        base.OnLoad(e);
        this.ControlBox = false;
        this.WindowState = FormWindowState.Maximized;
        this.BringToFront();
    }
}  

4. At code behind of MainForm, create the click events for RibbonButton at MainForm:

Note: In previous version of Ribbon, inheritance of RibbonForm is not supported well with MDI Enabled WinForm. This problem is solved in released version of 10 May 2013. 

public partial class MainForm : RibbonForm
{
    public MainForm()
    {
        InitializeComponent();
    }

    private void ribbonButton_Form1_Click(object sender, EventArgs e)
    {
        // Load Form1
    }

    private void ribbonButton_Close_Click(object sender, EventArgs e)
    {
        // Close All Forms
    }
}  

5. Codes for loading Form1 into MDI:

private void ribbonButton_Form1_Click(object sender, EventArgs e)
{
    foreach (Form f in this.MdiChildren)
    {
        if (f.GetType() == typeof(Form1))
        {
            f.Activate();
            return;
        }
    }
    Form form1 = new Form1();
    form1.MdiParent = this;
    form1.Show();
} 

6. Codes for closing all opened form in MDI:

private void ribbonButton_Close_Click(object sender, EventArgs e)
{
    while (this.ActiveMdiChild != null)
    {
        this.ActiveMdiChild.Close();
    }
} 

7. That's it. Enjoy. 


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

 

Note: A Theme Builder is included in the Demo App, you can obtain it at Download. You can Build new Theme easily with Theme Builder. In new released, Ribbon (13 Jan 2013), Ribbon can write and read a theme file. Read more: How to Create and Load Theme File. 
  1. To make your own color theme, create another class and inherit RibbonProfesionalRendererColorTable. 
  2. Change all the color objects into your desired colors. 
  3. Example: (the first five colors have been filled for your reference).

    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 MyCoolThemeSkin()
            {
                #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
            }     
    
            public Color FromHex(string hex)
            {
                if (hex.StartsWith("#"))
                    hex = hex.Substring(1);
    
                if (hex.Length != 6) throw new Exception("Color not valid");
    
                return Color.FromArgb(
                    int.Parse(hex.Substring(0, 2), system.Globalization.NumberStyles.HexNumber),
                    int.Parse(hex.Substring(2, 2), System.Globalization.NumberStyles.HexNumber),
                    int.Parse(hex.Substring(4, 2), System.Globalization.NumberStyles.HexNumber));
            }   
        }
    }
  4. Then, in the Load event of MainForm.cs, add this line:
    namespace RibbonDemo
    {
        public partial class MainForm : RibbonForm
        {
            public MainForm()
            {
                InitializeComponent();
                ChangeTheme();
            }
    
            private void ChangeTheme()
            {
                (ribbon1.Renderer as RibbonProfessionalRenderer).ColorTable = 
                    new MyCoolThemeSkin();
                ribbon1.Refresh();   
            }
        }
    }

Part 7: Known Issues  

Are resolved.

Article Change Log: 

11 May 2013

  • Update guides for Using Ribbon with MDI Enabled WinForm (Part 4) 

10 May 2013

  • Release of Version 10 May 2013 (several bug fixes)

11 Mar 2013 

  • Preliminary solution for the RibbonForm DockStyle.Fill issue in Win 7

24 Feb 2013 

  • Release of Version 24 Feb 2013  (several bug fixes)

13 Jan 2013 

  • Release of Version 13 Jan 2013 (Include a ThemeBuilder)  

10 Jan 2013 

  • Release of Version 10 Jan 2013  

02 Jan 2013 

  • Introduce new compiled version of ribbon, released on 10 Jan 2012. 
31 Dec 2012

  • Part 2: Guide added for using the ribbon in Visual Studio 2012 

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 Authors

toATwork
Software Developer (Senior)
Austria Austria
Member
No Biography provided

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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
BugError when loading MDI screen PinmemberCorvetteGuru4 Feb '13 - 8:27 
GeneralMy vote of 5 Pinmembergokude3 Feb '13 - 23:02 
QuestionTag of RibbonItem, RibbonPanel and RibbonTab Pinmembergokude3 Feb '13 - 22:28 
QuestionFacing an issue while build or run. [modified] Pinmemberjintopaul3 Feb '13 - 18:02 
QuestionSplitDropDown in QuickAccessToolbar Pinmembergokude29 Jan '13 - 22:27 
BugOrb Menu Items not working PinmemberMember 888448828 Jan '13 - 8:21 
GeneralThis thing ROCKS! PinmemberCorvetteGuru23 Jan '13 - 11:33 
QuestionAuto Hide Task Bar is not visible and never displays? PinmemberNick Parnham22 Jan '13 - 15:13 
QuestionWinXP problems after migration from Ribbon.dll to Ribon35.dll Pinmemberemti8521 Jan '13 - 3:21 
GeneralMy vote of 3 PinmemberJHQY17 Jan '13 - 3:19 
QuestionRibbon Button Text Vertical Alignment Pinmemberazinyama16 Jan '13 - 7:10 
QuestionRemove Tab Title Pinmemberazinyama15 Jan '13 - 21:11 
GeneralMy vote of 5 Pinmemberbitzhuwei15 Jan '13 - 14:04 
GeneralMy vote of 5 Pinmembertoantvo13 Jan '13 - 22:58 
GeneralMy vote of 5 Pinmemberrageebnayeem13 Jan '13 - 11:14 
GeneralMy vote of 4 PinmemberMd. Tariq-ul Islam13 Jan '13 - 0:39 
GeneralThank you PinmemberEbrahim Alareqi13 Jan '13 - 0:26 
GeneralMy vote of 5 Pinmemberiman mohadesi11 Jan '13 - 19:43 
GeneralMy vote of 5 PinmemberJason Fang_10 Jan '13 - 19:35 
Questiongetting error in ribbon control PinmemberSnehasish Nandy7 Jan '13 - 19:12 
AnswerResolution of "bugs" [modified] PinmemberShiraz S K30 Dec '12 - 18:53 15 
QuestionHow to add Short Cut for Tabs And Ribbon Buttons PinmemberMember 929272930 Dec '12 - 18:52 
QuestionProblem with Customizing the QAT (quick access tool bar) Pinmemberuday ch14 Dec '12 - 4:28 
QuestionProgrammatically add Buttons to a Panel or set the Text of a drop down PinmemberFranziska13 Dec '12 - 22:20 
QuestionHow I can use Tooltip with ribbonbutton? PinmemberWarperu13 Dec '12 - 6:28 
GeneralRibbon Menu PinmembersirJimm4 Dec '12 - 5:28 
SuggestionCan the menu hide like the Office 2010? Pinmembercaoneng29 Nov '12 - 23:03 
BugRibbonbar is crashing when the size of the form is getting too small PinmemberFranziska23 Nov '12 - 10:01 
QuestionForm Close / Maximize / Minimize Buttons PinmemberMember 793177822 Nov '12 - 21:45 
Questionribbon in vs2012 PinmemberMember 951785322 Nov '12 - 4:45 
GeneralMy vote of 5 PinmemberRaj Champaneriya21 Nov '12 - 19:40 
GeneralMy vote of 5 PinmemberMarc Chouteau21 Nov '12 - 11:28 
GeneralMy vote of 5 Pinmemberİbrahim Uylaş20 Nov '12 - 22:02 
QuestionCannot hide QuickAccessToolbar PinmemberRadek_Jur11 Nov '12 - 4:55 
QuestionPlease, tell me that how to use ComboBox? Pinmemberpompido199029 Oct '12 - 7:20 
QuestionThanks PinmemberVortex.piggy25 Oct '12 - 2:23 
QuestionDelay issue PinmemberDeWet van Rooyen22 Oct '12 - 17:18 
GeneralMy vote of 5 Pinmemberyueniaozhang15 Oct '12 - 18:24 
GeneralIt`s really cool~ Pinmemberyueniaozhang15 Oct '12 - 18:23 
Questionobject reference not set to instance error in .net 4.0 PinmemberAravind M Rajagopal30 Sep '12 - 4:26 
GeneralMy vote of 4 Pinmembershr3566399 Sep '12 - 18:17 
BugRibbon Button Text Cutted PinmemberSilvio893 Sep '12 - 21:43 
QuestionButton Pinmemberkenajelencres27 Aug '12 - 4:00 
QuestionGreat Tutorial Pinmemberyuifox17 Aug '12 - 6:45 
GeneralMy vote of 5 Pinmemberho duc dung30 Jul '12 - 17:15 
QuestionUse as TabControl PinmembertoATwork26 Jul '12 - 4:22 
QuestionMDI with RibbonForm Pinmemberraranibar23 Jul '12 - 4:57 
Questioncustomize title Pinmemberraranibar21 Jul '12 - 4:30 
QuestionDropDownList Pinmemberjdhmp23 Jun '12 - 8:23 
QuestionHow to add sub MenuItem PinmemberLikeVincent31 May '12 - 22:11 
QuestionSupport RTL layout PinmemberMember 445563429 May '12 - 20:22 

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

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