Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / Windows Forms

A Professional Ribbon You Will Use (Now with orb!)

Rate me:
Please Sign up or sign in to vote.
4.96/5 (573 votes)
12 Jun 2012Ms-PL6 min read 2.3M   141.7K   1.4K   624
A serious project on an Office-like Ribbon control

New: Read the guide for embedding the ribbon on the non-client area.

WinFormsRibbon/ribbon_0.4.008.jpg

Introduction

Because of the lack of good free Ribbon controls on the web, I decided to write one myself. I've analyzed previous work on ribbon-controls, including those on CodeProject. Unfortunately, most existent controls are merely bad tries. Why? well, some lack nice rendering, some lack resizing features, some lack almost everything. Of course, well developed Ribbon controls are available at a price. This ribbon is free.

Why not WPF? Well mainly, because I needed the Ribbon to add it to my existing WinForms applications. In my opinion (the short version) this is not a "no" to WPF, is just a "not yet". Anyway, you can host a WinForms control in WPF (See this link).

Some of the Design Goals

Performance - This ribbon is contained on a Control window, and every element inside of it is managed as a bunch of bounds inside the control, just as the ToolStrip control does. Although this is difficult to manage from the ribbon's inside code, this is a way to keep it at the best performed ribbon. Believe me, download the demo, run it and resize the window. It performs beautifully.

Consistency with Office's Ribbon - I read once about Jakob Nielsen saying that most users prefer that the programs they use look just like Word, Excel or PowerPoint. This is quite obvious, because people use this software every day. Providing visual consistency with the Office's ribbon is very important because of that, people already know what to expect and that's a usability advantage. I've tried to see that every element in the ribbon looks and behaves exactly like it does in the Office's ribbon.

Ease of use for programmers - The naming of components is consistent with most WinForms naming system, even more with the ToolStrip elements. Property, event and method names for similar elements are named just like in the ToolStrip technology items.

Designer support - I will be adding more and more designer support so you can manage the ribbon 100% from the designer. Give it a try.

I will be providing updates and fixes for bugs, as I discover them or you kindly let me know about them.

Using the Ribbon

The ribbon is located in the System.Windows.Forms namespace, just as every other control, I think it's annoying to use controls named as MyCoolFirm.MyCoolNameSpace.MyCoolSubNameSpace and so on (Please do that only for business objects).

You can add a reference to the compiled DLL: System.Windows.Forms.Ribbon.dll or you can directly copy the source files to a folder on your project. The code is currently designed so you can just copy the source files, it doesn't need any extra resources.

Hands on: Quick Guide

The ribbon is composed mainly by three kind of elements, the tabs, the panels on the tabs (other developers call them groups) and the items inside the panels.

WinFormsRibbon/ribbontab.gif

WinFormsRibbon/ribbonpanel.gif

WinFormsRibbon/ribbonitems.gif

These elements are represented by RibbonTab, RibbonPanel and RibbonItem types. RibbonItem is an abstract class that provides basic functionality for any item hosted on a RibbonPanel or on a RibbonDropDown.

You can add tabs from the smart tag of the Ribbon, you can add panels to the tab by selecting the tab and calling the "AddPanel" verb on the bottom part of the property grid.

The elements on the ribbon are resized according to the available space for the ribbon. This is a key feature of the ribbon. It tries to bring all possible commands to the screen by resizing them, instead of hiding them on an overflow button like the old ToolStrip.

I treat this as three kinds of sizes: Large, Medium and Compact. An additional size is used for panels because panels can be collapsed, and then they will adopt the Overflow size.

WinFormsRibbon/ribbonpanelsizes.gif

Note: There's no way to directly affect the bounds of the elements on the ribbon, the size will always be determined the layout engine inside the ribbon. In fact, the layout depends on two factors: the available horizontal space on the ribbon and the size modes on the items.

If there's no available space on the ribbon for a panel, panel will be collapsed. If all panels are collapsed and space is not available yet, a scroll button will appear so user can scroll the panels horizontally.

Click to enlarge image

Buttons

There's only one type of button: RibbonButton. It can be set to three styles:

WinFormsRibbon/ribbonbuttonstyles.gif

RibbonButton adds the SmallImage property so you can set the image shown when button is in medium or compact mode. Although it's not restricted by functionality, it's highly recommended to use just 32 x 32 pixels for Image property and 16 x 16 for SmallImage property. Results are unexpected when sizes are different.

Note: Use the DropDownItems property to add items to the dropdown of the button.

The appearance of the buttons vary through size modes.

ItemGroups

The buttons like those on the Font and Paragraph panels are RibbonButton buttons hosted inside a RibbonItemGroup group.

WinFormsRibbon/ribbonitemgroup.gif

Items added to RibbonItemGroup will always be measured and treated in compact size mode.

Important: If a RibbonPanel will host RibbonItemGroup objects, you must set the RibbonPanel.FlowsTo property to Right. The layout on those items are treated differently because groups flow as rows.

Lists

Lists are represented by RibbonButtonList and provide two collections: Buttons and DropDownItems. This is because the list can be scrolled on the ribbon and can dropdown more items. The dropdown of list supports resizing by a grip on the south east corner.

If you want the buttons on the list to be shown on the dropdown, you will have to explicitly add another list with those buttons to the DropDownItems property.

Separators

Separators are represented by RibbonButtonSeparator and provides the well known separator functionality. When in a dropdown, separators can actually contain text. When they contain text, they will be rendered differently.

WinFormsRibbon/ribbondropdown.gif

Tutorials

  • Getting Started With the Ribbon at ribbon.codeplex.com 

Known Bugs

  • Multiple dropdowns not managed OK 
  • Drawing of collapsed panels when mouse down

Things To Do

  • Contextual tabs
  • ToolTips
  • (OK) TextBox, ComboBox
  • Checkbox and NumericUpDown RibbonItems
  • Orb and Quickaccess tools
  • Vista clientarea docking
  • Keyboard quick access through Alt key
  • Font and Color selectors
  • Right to left orientation
  • Ribbon minimization

History

  • 8 May 2008 - Original post
  • 29 May 2008 - Update
    • Enabled property now working
    • Added RibbonTextBox - A regular textbox with label and image
    • Added RibbonComboBox - (Inherited from RibbonTextBox) Offers a dropdown
    • Added RibbonColorChooser - A button that shows a color bar. See property Color
  • 23 Feb 2009 - Update
    • Orb and orb menu with designer capabilities
    • Quick Access Toolbar added
    • Some bugs fixed
  • 1 May 2009 - Update 
    • Orb and Quick access embedded on non-client area
    • Popup menus fixed!
    • Lots of Event handlers supported
    • Minor bugs fixed

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Product Manager
United States United States
- I've been programming Windows and Web apps since 1997.
- My greatest concern nowadays is product, user interface, and usability.
- TypeScript / React expert

@geeksplainer

Comments and Discussions

 
GeneralRe: Problems with Ribbon Pin
bilal haider14-Dec-08 20:40
bilal haider14-Dec-08 20:40 
GeneralRe: Problems with Ribbon Pin
Member 45068854-Jan-09 3:22
Member 45068854-Jan-09 3:22 
GeneralAbout the reusable code Pin
Gailisis Dawsons27-Nov-08 4:40
Gailisis Dawsons27-Nov-08 4:40 
GeneralBug, parent 'null' thows error when leaving focus TextBox ComboBox Pin
Rich_UK23-Nov-08 1:11
Rich_UK23-Nov-08 1:11 
GeneralMini toolbar Pin
frank_lupo20-Nov-08 21:44
frank_lupo20-Nov-08 21:44 
QuestionGood work, what about a glass button ? Pin
Rich_UK20-Nov-08 0:07
Rich_UK20-Nov-08 0:07 
GeneralDLL doesn't work in VB.NET Pin
dherrmann17-Nov-08 1:03
dherrmann17-Nov-08 1:03 
QuestionRe: DLL doesn't work in VB.NET Pin
Indrora18-Dec-08 4:38
Indrora18-Dec-08 4:38 
...Does It Work In C#?...
if not then your copy of VS is pooched.


I had no problem bringing it into vb. Added it to my list of user control libraries, popped it onto a form and it worked like a charm Suspicious | :suss:

----
Morgan Gangwere
Lead programmer, Unknown Software

"Pinky, are you thinking what im thinking?"
"I Dunno brain, how many licks DOES it take to get to the tootsie roll center of a tootsie pop?"
"You want me to calculate that? or should we take over the world?"
"ooh! OooooOOOooH! lets find out!"

GeneralChecked Buttons Pin
Gailisis Dawsons13-Nov-08 4:38
Gailisis Dawsons13-Nov-08 4:38 
GeneralRe: Checked Buttons Pin
JoseMenendez13-Nov-08 5:04
JoseMenendez13-Nov-08 5:04 
GeneralVery cool Pin
Nedim Sabic12-Nov-08 1:10
Nedim Sabic12-Nov-08 1:10 
QuestionBUG - Problem with Dropdowns Pin
JavierJJJ10-Nov-08 20:49
JavierJJJ10-Nov-08 20:49 
Questionchange colors? Pin
Edward1117-Nov-08 16:12
Edward1117-Nov-08 16:12 
AnswerRe: change colors? Pin
Clutchplate9-Nov-08 7:35
Clutchplate9-Nov-08 7:35 
AnswerRe: change colors? Pin
JoseMenendez9-Nov-08 8:05
JoseMenendez9-Nov-08 8:05 
GeneralRe: change colors? Pin
Edward11111-Nov-08 6:30
Edward11111-Nov-08 6:30 
GeneralRe: change colors? Pin
Edward11111-Nov-08 7:05
Edward11111-Nov-08 7:05 
GeneralRe: change colors? Pin
JoseMenendez11-Nov-08 7:27
JoseMenendez11-Nov-08 7:27 
GeneralRe: change colors? Pin
Edward11111-Nov-08 8:57
Edward11111-Nov-08 8:57 
GeneralRe: change colors? Pin
Edward11111-Nov-08 13:31
Edward11111-Nov-08 13:31 
AnswerRe: change colors? Pin
pcm_it12-Nov-08 17:34
pcm_it12-Nov-08 17:34 
GeneralRe: change colors? [modified] Pin
Martin Radu15-Nov-08 22:12
Martin Radu15-Nov-08 22:12 
QuestionNext Version Pin
GHoffer2-Nov-08 23:51
GHoffer2-Nov-08 23:51 
AnswerRe: Next Version Pin
JoseMenendez3-Nov-08 4:42
JoseMenendez3-Nov-08 4:42 
AnswerRe: Next Version Pin
GHoffer3-Nov-08 13:06
GHoffer3-Nov-08 13:06 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.