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

Easily Add a Ribbon Into WinForm Application

By , 11 Apr 2012
 
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.



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



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



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



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



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.





11. Click on the Ribbon and Click Add Tab.



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



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



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.



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.



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.



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.



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)

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 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.
 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --

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.

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.130523.1 | Last Updated 11 Apr 2012
Article Copyright 2012 by adriancs
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid