Click here to Skip to main content
15,880,796 members
Articles / Desktop Programming / Windows Forms
Article

An easy way to add a Ribbon Panel Office 2007 style

Rate me:
Please Sign up or sign in to vote.
4.93/5 (252 votes)
18 Apr 2007CPOL3 min read 822.3K   26.7K   521   263
GNU code of RibbonPanel, free software for personal and nonlucrative use, for rest please contact me
Screenshot - overview.jpg

Introduction

A picture is worth a thousand words, well it was a really cute work at the end. Before explaining how to add it to your applications, I will show you the main features.

Features of RibbonStyle Namespace

  • RibbonButton: Transparency, Autosizable image, AutoForecolor, AutoInfoForm (see InfoForm, OnBackImage and ClickBackImage).
  • TabPanel: Transparency, BaseColor, BaseColorOn (Highlighted), Caption, Resizable.
  • TabStrip: Has inside:
    1. Tab: With Autowidth, BaseColor, HaloColor and Enable work.
    2. TabStripProffesionalRenderer: Controls the Tab Style (hard to work)
    3. TabStripPage: BaseColor, inherits my RibbonPanel.
    4. TabPageSwitcher: Controls the link between Tab and TabStripPage. Design functionality as the tabcontrol.
  • InfoForm (with Shadow): Depending on Title, Comment, and Image of Info.. Properties of RibbonButton resizes itself.

Using the controls

I hope that if you have understood the Features, the next will be easy for you.

  1. Make a new C# App.
  2. Add all the classes to your app.
  3. Now Rebuild the project.
  4. In the toolbox you will have many new controls:

    Screenshot - toolbox.jpg

  5. Now Add a Windows.Forms.Panel to the Form and dock to the top, adjust it like you want.
  6. Add the TabStrip inside the Panel.
  7. With the TabStripPageSwitcher you can add TabStrip. If you find it difficult to click on it, you can click in the properties window:
  8. Screenshot - tabpageswitcher.jpg

  9. With a TabStrip and some tabs and TabStrip pages, add TabPanels inside the TabStripPages (Check the TabPanel has BackColor.Transparent) . I recommend you to add a few of them to the form and copy and paste inside the tabStripPage (it is easy to dock them later). With the Tabpanels added, dock them to the left.
  10. Now add the RibbonButton inside the TabPanel, adjust its size and its images, copy and paste as you want and change the image. Don't worry about the text colors, they will be processed at runtime.
  11. If everything is ok and if you run it, you will see something like this (Azure Style):

    Screenshot - tabs.jpg

Creating your custom style

As you could see in the demo zip, it is possible to change the colors at runtime. Let's analyze the code. If you look at the Form1 code, there's a method SetStyle:

C#
public void SetStyle(string Name)
{
    Color HaloColor = Color.White;
    switch (Name)
    {
        case "Dark":
        this.BackColor = Color.FromArgb(88,77,69);
        HaloColor = Color.FromArgb(200,200,200);
        SetBase(87,61,53,HaloColor);
    break;...

You find out that you have to change only three colors! I hope you find it useful. The rest are sum or subs from the color components. So to avoid color errors, I recommend taking a look at my other article which has a color selector, only for the basecolor, HaloColor is the brightness over the tabs and the Backcolor is for the form.

Points of Interest

I have to say that I use the base of CustomTabstrip for the part of tabstrip. I was annoyed with the tabcontrol and after looking for something, the best was to inherit from a ToolStrip.

There's a lot of code in the project and I have written this with a lot of effort. If you need an explanation of any part, please ask me. It's .NET 2.0 code I put in a Windows 2000 machine and it works really well in XP and Vista too.

To design a better software, please vote the value of the code for you and if you vote, please tell me the pros and cons.

History

  • 1.0: The first version of the control library.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Expediteapps
Spain Spain
I'm Electronic Engineer, I did my end degree project at Astrophysical Institute and Tech Institute. I'm HP Procurve AIS and ASE ,Microsoft 3.5 MCTS
I live in Canary Islands ,developing customized solutions

Deeply involved in Xamarin Forms LOB (including Azure Cloud with offline support, custom controls, dependencies) projects, WP8.1 & W10 projects, WPF modern styled projects. Portable libraries like portablePDF, portableOneDrive, portableReports and portablePrinting (using Google Printing API).


Web and apps showcase at:
Expediteapps


Take a look to my blog
Blog

Comments and Discussions

 
GeneralRe: NullReferenceException Pin
tengfung22-Apr-07 13:44
tengfung22-Apr-07 13:44 
GeneralRe: NullReferenceException Pin
Grizzley9029-Apr-07 13:39
Grizzley9029-Apr-07 13:39 
GeneralRe: NullReferenceException Pin
tengfung30-Apr-07 6:09
tengfung30-Apr-07 6:09 
GeneralSelling Free Software Pin
Juan Pablo G.C.21-Apr-07 8:15
Juan Pablo G.C.21-Apr-07 8:15 
GeneralRe: Selling Free Software Pin
Marcos Meli21-Apr-07 8:38
Marcos Meli21-Apr-07 8:38 
GeneralRe: Selling Free Software Pin
Juan Pablo G.C.21-Apr-07 22:21
Juan Pablo G.C.21-Apr-07 22:21 
GeneralRe: Selling Free Software Pin
Marcos Meli22-Apr-07 4:16
Marcos Meli22-Apr-07 4:16 
GeneralImpressive, but... clumsy coded [modified] Pin
Pedro Gomes21-Apr-07 4:52
Pedro Gomes21-Apr-07 4:52 
Pablo, the result is impressive. I was thinking on use it the minute I saw it. Then I read the code, it is a little clumsy. You’re missing a lot of disposes (Pens, Brushes and other should be disposed).
Also design time support is not that good, and one shouldn't be required to add a panel and the Ribbon inside the panel.
Yesterday a started refactoring the code :
. I’ve renamed classes to make than more similar to Microsoft names.
. Refactored painting code that was very clumsy.
. Added some missing classes and designers.

If you want i can share my work (that is based on your’s) with you.
Nevertheless I vote 5, because it really is a great job, with an impressive result




-- modified at 11:00 Saturday 21st April, 2007
GeneralRe: Impressive, but... clumsy coded Pin
Patrick Etc.21-Apr-07 6:52
Patrick Etc.21-Apr-07 6:52 
GeneralRe: Impressive, but... clumsy coded Pin
Juan Pablo G.C.21-Apr-07 7:53
Juan Pablo G.C.21-Apr-07 7:53 
GeneralNow thats a nice control Pin
Sacha Barber21-Apr-07 3:19
Sacha Barber21-Apr-07 3:19 
GeneralLicencing Pin
kin3tik21-Apr-07 2:49
kin3tik21-Apr-07 2:49 
GeneralRe: Licencing Pin
Juan Pablo G.C.21-Apr-07 7:59
Juan Pablo G.C.21-Apr-07 7:59 
GeneralAbsolutly great Pin
Mc Gwyn20-Apr-07 22:50
Mc Gwyn20-Apr-07 22:50 
QuestionAny patent issues? Pin
rdcotter20-Apr-07 9:12
rdcotter20-Apr-07 9:12 
AnswerRe: Any patent issues? Pin
Juan Pablo G.C.20-Apr-07 9:21
Juan Pablo G.C.20-Apr-07 9:21 
GeneralRe: Any patent issues? Pin
Patrick Etc.20-Apr-07 9:50
Patrick Etc.20-Apr-07 9:50 
GeneralRe: Any patent issues? Pin
Juan Pablo G.C.20-Apr-07 12:06
Juan Pablo G.C.20-Apr-07 12:06 
GeneralRe: Any patent issues? Pin
Patrick Etc.20-Apr-07 12:16
Patrick Etc.20-Apr-07 12:16 
GeneralRe: Any patent issues? Pin
Juan Pablo G.C.21-Apr-07 7:55
Juan Pablo G.C.21-Apr-07 7:55 
GeneralRe: Any patent issues? Pin
Patrick Etc.21-Apr-07 8:08
Patrick Etc.21-Apr-07 8:08 
GeneralRe: Any patent issues? [modified] Pin
Gary Mann20-Apr-07 10:06
Gary Mann20-Apr-07 10:06 
QuestionCool, but 2 requests Pin
André Ziegler20-Apr-07 9:07
André Ziegler20-Apr-07 9:07 
AnswerRe: Cool, but 2 requests Pin
Juan Pablo G.C.20-Apr-07 9:19
Juan Pablo G.C.20-Apr-07 9:19 
AnswerRe: Cool, but 2 requests Pin
André Ziegler21-Apr-07 2:05
André Ziegler21-Apr-07 2:05 

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.