Click here to Skip to main content
15,878,945 members
Articles / Programming Languages / C#
Article

The new RibbonForm, RibbonRoundButton, and FastMenu

Rate me:
Please Sign up or sign in to vote.
4.41/5 (59 votes)
3 Jun 2007CPOL2 min read 150.7K   5.2K   157   76
A free version of RibbonForm, RibbonRoundButton, and RibbonFastMenu.

Screenshot - RibbonTest.png

Introduction

In this article, I present the RibbonForm, RibbonRoundButton, and RibbonFastMenu as a release version. I present RibbonContextMenu as a preview version because I have to improve some parameters to work with it well.

The Controls

RibbonForm 1.0

Screenshot - RibbonForm.png

The RibbonForm was a bit difficult to design due to it being a modeless window, and I had to implement all the resizing and window moving by myself. Also, I had to implement a HSB method to change colors.

Properties

The RibbonForm has these properties:

  • CompB: To change the Brightness of the Form with a value that I recommend to get from the RibbonFormSample (see screenshot above).
  • CompS: To change the Saturation of the Form, the same as above.
  • CompH: To change the Hue of the Form, the same as above.
  • TextSection: It's the subtitle of the Form with the harmony color.

How to use

In a new Windows application, add an existing item from the Solution Explorer, and choose the RibbonForm.cs (it adds the other files needed). Now, in the Form1.cs code, change to this:

C#
using RibbonStyle; //To add the NameSpace

namespace RibbonTest
{
    public partial class Form1 : RibbonForm //To inherit from RibbonForm
    {
        public Form1()
        {
            InitializeComponent();
        }
    }
} 

RibbonRoundButton 1.0

Screenshot - RibbonRound.png

It was really hard to design a vectorial round button with fading, but I think it finished well.

Properties

The RibbonRoundButton has these properties:

  • ColorBase, ColorOn, ColorPress: The typical colors.
  • ColorStroke: Is the border of the button.
  • ImgOffset: You can move the image from topleft to rightdown.
  • ImgScale: You can scale the image from 1 to 100.

How to use

You can choose two options: as other buttons, you can add the DLL in Class_RibbonRoundButton, or you can add an existing item in the Solution Explorer and choose RibbonRoundButton.cs, then recompile and add the button to the Form.

RibbonFastMenu 1.0

It's the form that appears when you click on the MenuButton on the top-left. This Form has the typical app options.

I have to implement a SetHSB() method to change the colors, but it is functional.

How to use

In a Windows application, choose Add Existing Item, and select the RibbonFastMenu.cs. I recommend adding all the existing resources from the RibbonTest app to have all the images, and then you will have a Form like in the first image of the article.

Comments

I'm designing a better way to use the RibbonContextMenu because I think it's a bit difficult to use, but please be patient till I finish it.

Keep in mind

  • I have to add the SetHSB() method to the FastMenu.
  • Make a better way to implement the FastMenu.
  • Make a stable version of the RibbonContextMenu.

History

  • June 2007 - RibbonForm 1.0, RibbonFastMenu 1.0, RibbonRoundButton 1.0.

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

 
QuestionI get error Severity Code "The name 'InitializeComponent' does not exist in the current context " Pin
DavisMillier12-Nov-16 4:25
DavisMillier12-Nov-16 4:25 
GeneralMy vote of 2 Pin
i0024-Jun-14 1:47
i0024-Jun-14 1:47 
GeneralRe: My vote of 2 Pin
Juan Pablo G.C.11-Jul-14 3:42
Juan Pablo G.C.11-Jul-14 3:42 
SuggestionForm Resize/Positioning Fix (modification) Pin
Someguydude30-Jun-12 5:59
Someguydude30-Jun-12 5:59 
I've noticed there was a major issue in the re-sizing and re-positioning of the form. It works great if you are slowly moving the mouse, but if you move to fast, the mouse catchers a different part of the form and re-sizes / re-positions it at the specific spot
so here is my fix:
1. Go to the code section of RibbonForm.cs
2. Open up the "Mouse Events" Region
3. In the initialization of the variables add the following:
C#
private bool mouseReset = true;
private List<int> mouseEvent = new List<int>();

4. Scroll down to the onMouseMove method.
find
C#
if (_mousedown)
{
}

5. Replace that with the following:
C#
if (_mousedown)
            {
                if (mouseReset)
                {
                    mouseEvent.Clear();

                    #region Bottom
                    if (_mouseposonwindow.Y > this.Height - cornerssize)
                    {
                        //Bottom Right
                        if (_mouseposonwindow.X > this.Width - cornerssize)
                        {
                            mouseEvent.Add(0);
                        }
                        //Bottom Left
                        else if (_mouseposonwindow.X < cornerssize)
                        {
                            mouseEvent.Add(1);
                        }
                        //Bottom
                        else
                        {
                            mouseEvent.Add(2);
                        }
                    }
                    #endregion

                    #region Top
                    if (_mouseposonwindow.Y < cornerssize)
                    {
                        //Top Right
                        if (_mouseposonwindow.X > this.Width - cornerssize)
                        {
                            mouseEvent.Add(3);
                        }
                        //Top Left
                        else if (_mouseposonwindow.X < cornerssize)
                        {
                            mouseEvent.Add(4);
                        }
                        //Top
                        else if (_mouseposonwindow.Y < 3 & _mouseposonwindow.X > cornerssize & _mouseposonwindow.X < this.Width - cornerssize)
                        {
                            mouseEvent.Add(5);
                        }
                        else
                        {
                            mouseEvent.Add(6);
                        }
                    }
                    #endregion

                    #region Sides

                    else if (_mouseposonwindow.X < cornerssize)
                    {
                        mouseEvent.Add(7);
                    }
                    else if (_mouseposonwindow.X > this.Width - cornerssize)
                    {
                        mouseEvent.Add(8);
                    }
                    #endregion
                mouseReset = false;
                }

                foreach(int m in mouseEvent)
                {
                #region Update
                switch (m)
                {
                    case 0:
                        {
                            this.Size = new Size(_mouseposonwindow.X, _mouseposonwindow.Y);
                        }
                        break;
                    case 1:
                        {
                            this.Location = new Point(this.Location.X + _mouseposonwindow.X, this.Location.Y);
                            this.Size = new Size(this.Width - e.X, _mouseposonwindow.Y);
                        }
                        break;
                    case 2:
                        {
                            this.Size = new Size(this.Width, _mouseposonwindow.Y);
                        }
                        break;
                    case 3:
                        {
                            this.Location = new Point(this.Location.X, this.Location.Y + e.Y);
                            this.Size = new Size(_mouseposonwindow.X, this.Height - e.Y);
                        }
                        break;
                    case 4:
                        {
                            this.Location = new Point(this.Location.X + e.X, this.Location.Y + e.Y);
                            this.Size = new Size(this.Width - e.X, this.Height - e.Y);
                        }
                        break;
                    case 5:
                        {
                            this.Location = new Point(this.Location.X, this.Location.Y + e.Y);
                            this.Size = new Size(this.Width, this.Height - e.Y);
                        }
                        break;
                    case 6:
                        {
                            Point mouseposonscreen = Control.MousePosition;
                            mouseposonscreen.X = mouseposonscreen.X - p_mouseoffset.X;
                            mouseposonscreen.Y = mouseposonscreen.Y - p_mouseoffset.Y;
                            this.Location = mouseposonscreen;
                        }
                        break;
                    case 7:
                        {
                            this.Location = new Point(this.Location.X + e.X, this.Location.Y);
                            this.Size = new Size(this.Width - e.X, this.Height);
                        }
                        break;
                    case 8:
                        {
                            this.Size = new Size(_mouseposonwindow.X, this.Height);
                        }
                        break;
                }
                #endregion
                }

            }
            else
            {
                mouseReset = true;
            }


And there, the form moves and re-sizes much more smoothly
GeneralTidy up the code == Fix CPU utilisation Pin
seeblunt1-Sep-09 13:53
seeblunt1-Sep-09 13:53 
GeneralCPU 100% Pin
naami_siq22-Nov-08 23:00
naami_siq22-Nov-08 23:00 
GeneralRe: CPU 100% Pin
kapil bhavsar26-Jun-09 1:37
kapil bhavsar26-Jun-09 1:37 
GeneralCPU 100% Pin
naami_siq22-Nov-08 22:57
naami_siq22-Nov-08 22:57 
GeneralA suggestion to improve the form Pin
javar9-Sep-08 20:34
javar9-Sep-08 20:34 
GeneralFew problems in your implementation Pin
HawVie15-Apr-08 0:06
HawVie15-Apr-08 0:06 
GeneralRe: Few problems in your implementation Pin
Mark Rice11-Aug-08 8:26
Mark Rice11-Aug-08 8:26 
GeneralGenerating code for alt colour Pin
Derek Bartram29-Jan-08 20:20
Derek Bartram29-Jan-08 20:20 
GeneralComments Pin
derek_bartram29-Jan-08 13:52
derek_bartram29-Jan-08 13:52 
GeneralFormBorder style Pin
Crusty Applesniffer2-Jan-08 5:51
Crusty Applesniffer2-Jan-08 5:51 
GeneralBug in RibbonColor [modified] Pin
The_Mega_ZZTer17-Aug-07 8:19
The_Mega_ZZTer17-Aug-07 8:19 
GeneralRe: Bug in RibbonColor Pin
flash.tato27-Dec-07 4:48
flash.tato27-Dec-07 4:48 
General100% cpu power Pin
Roey C4-Aug-07 7:19
Roey C4-Aug-07 7:19 
Questionhow would you do this with other components Pin
MartyK20073-Aug-07 3:00
MartyK20073-Aug-07 3:00 
NewsGreat job! But I have s small question: Pin
Le.Wang1-Aug-07 3:01
Le.Wang1-Aug-07 3:01 
GeneralGREAT JOB! Pin
Sniper16720-Jul-07 10:33
Sniper16720-Jul-07 10:33 
GeneralRe: GREAT JOB! Pin
Juan Pablo G.C.21-Jul-07 22:54
Juan Pablo G.C.21-Jul-07 22:54 
QuestionIs it just me or is this unusable right now? Pin
eeMarcoK28-Jun-07 21:18
eeMarcoK28-Jun-07 21:18 
GeneralProblem in Resize with 2 monitors... Pin
PakT25-Jun-07 6:08
PakT25-Jun-07 6:08 
GeneralThanks! Pin
hoana200714-Jun-07 0:42
hoana200714-Jun-07 0:42 
GeneralDisposing of graphics objects Pin
razzielx7-Jun-07 9:41
razzielx7-Jun-07 9:41 

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.