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

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

By , 10 Jan 2013
 
This is an old version of the currently published article.
  • Download Contents: Precompile 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 Jan 2013  

 

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) 

The latest released ribbon (10 Jan 2013) supports

  • 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

  1. Download the latest build of System.Windows.Forms.Ribbon35.dll (released on 10 Jan 2013) 
  2. Create a blank WinForms project.
  3. Add a Reference to System.Windows.Forms.Ribbon35.dll in your project.

Right click on Reference in Solution Explorer, choose Add.

Locate System.Windows.Forms.Ribbon35.dll.

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.

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

13. 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.");
}

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) 

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. 

Start

  1. 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.
  2. Create the Click event for the ribbon buttons.
  3. 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)
        {
                
        }
    }
  4. Next, set the MainForm's properties of IsMdiContainer to True.
  5. 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();
    }
  6. These forms run normally, but you will notice there is an annoying Control Box appearing at the top of the Ribbon Bar control.
  7. To get rid of the Control Box, we need to rearrange these codes in the correct sequence.
  8. f1.ControlBox = false;
    f1.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
    f1.MaximizeBox = false;
    f1.MinimizeBox = false;
    f1.WindowState = FormWindowState.Maximized;
  9. First, we create another form named MdiChildForm.cs. Open the designer for MdiChildForm.
  10. Add the below code to MdiChildForm.Designer.cs at the right sequence:
  11. 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();
        }
    }
  12. Save and close MdiChildForm.cs and MdiChildForm.Designer.cs.
  13. Modify all forms (forms that will be loading in MainForm.cs's MDI) to inherit MdiChildForm.
  14. 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
  15. Open forms and load it into the MDI client of MainForm.
  16. public partial class MainForm : Form
    {
        MdiClient mdi = null;
        public Form1()
        {
            InitializeComponent();
            foreach (Control c in this.Controls)
            {
                if (c is MdiClient)
                {
                    mdi = (MdiClient)c;
                    break;
                }
            }
    
            cmdCloseForm.Click += new EventHandler(cmdCloseForm_Click);
            cmdForm1.Click += new EventHandler(cmdForm1_Click);
            cmdForm2.Click += new EventHandler(cmdForm2_Click);
            cmdWelcome.Click += new EventHandler(cmdWelcome_Click);
        }
    
        private void LoadForm(object form)
        {
            foreach (Form f in mdi.MdiChildren)
            {
                f.Close();
            }
            if (form == null)
                return;
            ((Form)form).MdiParent = this;
            ((Form)form).Show();
        }
    
        void cmdWelcome_Click(object sender, EventArgs e)
        {
            LoadForm(new WelcomForm());
        }
    
        void cmdForm2_Click(object sender, EventArgs e)
        {
            LoadForm(new Form2());
        }
    
        void cmdForm1_Click(object sender, EventArgs e)
        {
            LoadForm(new Form1());
        }
    
        void cmdCloseForm_Click(object sender, EventArgs e)
        {
            LoadForm(null);
        }
    }
  17. Done

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. 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).
  4. 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));
            }   
        }
    }
  5. Then, in the Load event of MainForm.cs, add this line:
  6. namespace RibbonDemo
    {
        public partial class MainForm : RibbonForm
        {
            public MainForm()
            {
                InitializeComponent();
                ChangeTheme();
            }
    
            private void ChangeTheme()
            {
                (ribbon1.Renderer as RibbonProfessionalRenderer).ColorTable = 
                    new MyCoolThemeSkin();
                ribbon1.Refresh();   
            }
        }
    }

Article Change Log:

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 Author

adriancs
Software Developer
Malaysia Malaysia
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   
QuestionWhat about a NuGet release?memberTiago Freitas Leal10-Jun-13 10:25 
Nice to know the Windows Forms ribbon is alive. What about a NuGet release? This makes it even easier to use/deploy.
AnswerRe: What about a NuGet release?mvpadriancs10-Jun-13 15:00 
This is not planned.
This will make the maintenance work of the project more complicated.
Consume more time. More workload.
Its a bit too much for the developers who are not paid and using their own free time for this project.
 
I'm not going to maintain this project at 3 sites (codeplex, codeproject and NuGet).
 
Unless some of the project members are willing to do it.
However, is he/she always ready to do it for every release version?
If not, it will end up out of synchronize of version with the main project site (codeplex).
QuestionIteration of Controls for LocalizationmemberSmokingFish8-Jun-13 11:09 
Hello,
 
first off, great work, i really enjoy using it.
 
But a small problem:
i iterate all controls in my program to use ResourceManager.ApplyResources to apply localization settings. if i iterate through all tabs,panels and items i cant get the original handle (Name) to use on ApplyResources.
 
Any idea how I could get it?
 
Best regards,
Marcus
AnswerRe: Iteration of Controls for LocalizationmemberSmokingFish8-Jun-13 12:06 
I found a workaround so that you can still use the Language feature of Visual Studio:
 
- save the designer Name again in the Tag field
- iterate through tabs,panels,items
- for each use ResourceManager.GetString instead of ApplyResources ((string)item.Tag + ".Text")
- use this string to set Text of the items
 
this way works fine, but you would need to write code for all properties you want localized (maybe icons etc.). I would still want to find a way to use ApplyResources
QuestionHide Tab TextmemberMember 94870637-Jun-13 10:01 
Dear,
I would like to use the Ribbon, with only one tab.
Is there a way to hide the tab text and display only the content of the tab ?
 
Best regards
AnswerRe: Hide Tab TextmembertoATwork8-Jun-13 7:15 
The tab text you can set empty. But the tab itself? Not as far as I know. You could most likely adapt the painting accordingly.
AnswerRe: Hide Tab TextmemberPete Walburn13-Jun-13 5:57 
Hi,
 
did you get anywhere with this? I would like to do the same thing - I want a few panels, but not to have any tabs. I can have no text in the tab, but the tab is still shown.
 
Pete
NewsRe: Hide Tab TextmembertoATwork13-Jun-13 6:01 
Nope. Didn't have the time to check it yet - I am a little busy at the moment.
AnswerRe: Hide Tab TextmembertoATwork16-Jun-13 7:51 
Got it Cool | :cool:
https://officeribbon.codeplex.com/workitem/1054[^]
QuestionVB.net?memberKseg977-Jun-13 7:50 
I need this on VB.Net, can you make this for VB ?

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 10 Jan 2013
Article Copyright 2012 by adriancs
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid