本文转自:https://www.codeproject.com/articles/364272/easily-add-a-ribbon-into-a-winforms-application-cs

Easily add ribbon to WinForm Application for .NET Framework 2.0, 3.5, 4.0 & 4.5

Style 2007

Style 2010

Style 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 [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)


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. When you first create a project, Visual Studio might initially set the target framework to Client Profile.

If the project is using Client Profile, you might receive this error while you are trying to build the solution:

Hide   Copy Code
Error 3 The type or namespace name 'Ribbon' does not exist in the namespace 'System.Windows.Forms'
(are you missing an assembly reference?)
  1. Get System.Windows.Forms.Ribbon35.dll from download.
  2. Create a blank WinForms project.

  3. Add Ribbon into Visual Studio Toolbox.

    Right Click on Toolbox > Add Tab.

    Give the new tab a name "Ribbon".

    Right Click on the New Tab [Ribbon] > Choose Items...

    [Browse...] Where are you? System.Windows.Forms.Ribbon35.dl?

    There you are... Gotcha... Select it...

    Only [Ribbon] can be dragged into Form. Others, as the picture below said, they are not needed to exist in toolbox. However, it's not going to harm your computer or project if you select all the items belonging to ribbon (by default). It's up to you.

    And finally, what you're going to do is just...

    Another Way

    Manually code it behind.

    You can add the ribbon into WinForm too with code behind.

    Add a reference of System.Windows.Forms.Ribbon35.dll into your project. Build the solution.

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

    Add these three lines of code:

    Hide   Copy Code
    private System.Windows.Forms.Ribbon ribbon1;
    ribbon1 = new System.Windows.Forms.Ribbon();
    this.Controls.Add(ribbon1);

    into Form1.Designer.cs:

    Hide   Copy Code
    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.

    Let's continue...

  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. Click on the RibbonButton, go to properties > Click on Events > Double Click on event of Click.

  13. Events created.
    Hide   Copy Code
    public Form1()
    {
    InitializeComponent();
    } 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) This problem is solved in released version 10 May 2013.

  16. In the code for Form1.cs, change inheritance of Form from this line:
    Hide   Copy Code
    public partial class Form1 : Form

    to RibbonForm:

    Hide   Copy Code
    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.

Note: In previous version of Ribbon, inheritance of RibbonForm is not supported well with MDI Enabled WinForm. This problem is solved in released version of 10 May 2013.

Start

  1. Let's design a ribbon winform something like this as example. In the properties window, set IsMdiContainer to True.

  2. Create another simple form that will be loaded into the MDI Container of MainForm.

  3. At code behind of Form1, add in the below codes:
    Hide   Copy Code
    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    } protected override void OnLoad(EventArgs e)
    {
    base.OnLoad(e);
    this.ControlBox = false;
    this.WindowState = FormWindowState.Maximized;
    this.BringToFront();
    }
    }
  4. At code behind of MainForm, create the click events for RibbonButton at MainForm:

    Note: In the previous version of Ribbon, inheritance of RibbonForm is not supported well with MDI Enabled WinForm. This problem is solved in released version of 10 May 2013.

    Hide   Copy Code
    public partial class MainForm : RibbonForm
    {
    public MainForm()
    {
    InitializeComponent();
    } private void ribbonButton_Form1_Click(object sender, EventArgs e)
    {
    // Load Form1
    } private void ribbonButton_Close_Click(object sender, EventArgs e)
    {
    // Close All Forms
    }
    }
  5. Code for loading Form1 into MDI:
    Hide   Copy Code
    private void ribbonButton_Form1_Click(object sender, EventArgs e)
    {
    foreach (Form f in this.MdiChildren)
    {
    if (f.GetType() == typeof(Form1))
    {
    f.Activate();
    return;
    }
    }
    Form form1 = new Form1();
    form1.MdiParent = this;
    form1.Show();
    }
  6. Code for closing all opened forms in MDI:
    Hide   Copy Code
    private void ribbonButton_Close_Click(object sender, EventArgs e)
    {
    while (this.ActiveMdiChild != null)
    {
    this.ActiveMdiChild.Close();
    }
    }
  7. That's it. Enjoy.

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:

Note: A Theme Builder is included in the demo app, you can obtain it from the download. You can build a new Theme easily with Theme Builder. In new released Ribbon (13 Jan 2013), Ribbon can write and read a theme file. Read more: How to Create and Load Theme File.

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

    In this example, we'll name the new theme MyCoolThemeSkin.

    Hide   Shrink    Copy Code
    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));
    }
    }
    }
  4. Then, in the Load event of MainForm.cs, add this line:
    Hide   Copy Code
    namespace RibbonDemo
    {
    public partial class MainForm : RibbonForm
    {
    public MainForm()
    {
    InitializeComponent();
    ChangeTheme();
    } private void ChangeTheme()
    {
    Theme.ColorTable = new MyCoolThemeSkin();
    ribbon.Refresh();
    this.Refresh();
    }
    }
    }

Part 7: Known Issues

Are resolved.


Article Change Log

  • March 20, 2018 - Too many changes... unable to list out.... go to project site for more information
 

License

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

[转]Easily Add a Ribbon into a WinForms Application的更多相关文章

  1. Toggle the WinForms Ribbon Interface 切换 WinForms 功能区界面

    In this lesson, you will learn how to enable/disable the Ribbon User Interface in your application. ...

  2. easily add files to META-INF in NetBeans

    http://georgeinfo.blog.163.com/blog/static/16368334120101019104044650/ ————————————————————————————— ...

  3. [Node.js] Add Logging to a Node.js Application using Winston

    Winston is a popular logging library for NodeJS which allows you to customise the output, as well as ...

  4. [引]ASP.NET MVC 4 Content Map

    本文转自:http://msdn.microsoft.com/en-us/library/gg416514(v=vs.108).aspx The Model-View-Controller (MVC) ...

  5. 分享一个嵌入式httpdserver开发库 - boahttpd library

    http://sourceforge.net/projects/boahttpd/ 一个C接口的开发库,适用于 windows/linux/或其它嵌入式平台,支持CGI扩展,支持多线程.採用面向对象开 ...

  6. 使用vs2010创建MFC C++ Ribbon程序

    Your First MFC C++ Ribbon Application with Visual Studio 2010 Earlier this month, I put together my ...

  7. Embed dll Files Within an exe (C# WinForms)—Winform 集成零散dll进exe的方法

    A while back I was working on a small C# WinForms application in Visual Studio 2008. For the sake of ...

  8. sharepoint 2010 怎样在Ribbon区加入功能button

    继续前面的一篇博客,sharepoint 2010 怎样在列表中加入功能菜单操作项.这次主要是记录下,在Ribbon区域加入功能button.比如加入收藏button.例如以下图所看到的: 1. 还是 ...

  9. SharePoint 2010 Ribbon with wrong style in Chrome and Safari

    When we add custom ribbon to SharePoint 2010, it may display well in IE but not in Chrome and Safari ...

随机推荐

  1. A - Playground

    My kid's school cleared a large field on their property recently to convert it into a playing area.  ...

  2. Android-Java-面向对象的代码例子

    需求一:用手机打电话,发短信,看视频,听音乐,用面向对象思想实现: package android.java.oop01; /** * 1.既然是面向/面对 --> 对象 就要把 (用手机打电话 ...

  3. HttpWebRequest 跳转后(301,302)ResponseUri乱码问题

    问题: 目标地址: http://www.baidu.com/baidu.php?url=a000000aa.7D_ifdr1XkSUzuBz3rd2ccvp2mFoJ3rOUsnx8OdxeOeOL ...

  4. 网络流——最大流Dinic算法

    前言 突然发现到了新的一年什么东西好像就都不会了凉凉 算法步骤 建残量网络图 在残量网络图上跑增广路 重复1直到没有增广路(注意一个残量网络图要尽量把价值都用完,不然会浪费建图的时间) 代码实现 #i ...

  5. PS插件CameraRaw-初次尝试

    一.百度百科原话 RAW的原意就是“未经加工”.可以理解为:RAW图像就是CMOS或者CCD图像感应器将捕捉到的光源信号转化为数字信号的原始数据.RAW文件是一种记录了数码相机传感器的原始信息,同时记 ...

  6. cad 关键字被保留了?选择集关键字保留了? N S W E关键字无法用?

    N S W E是东南西北四个方位,s是南方270度,在设置关键字的时候必须避开这四个关键字. 设置早期的R14 也有.

  7. C++(初学讲解):判断倍数

    问题描述输入一个整数,如果是5的倍数,那么输出倍数的值,否则输出NO. 输入描述一个整数. 输出描述输出倍数的值或者NO. 输入示例15 输出示例3 #include <iostream> ...

  8. sql 导入导出表数据 命令

    那么在我们使用BCP命令之前,我们首先要在Sql Server数据库中执行下列语句,以修改Sql Server的配置,启用对BCP命令的支持. --允许配置高级选项 exec sp_configure ...

  9. POJ 2845

    #include <iostream> #include <string> #include <algorithm> #define MAXN 350 using ...

  10. Java DB 访问(三)mybatis mapper interface接口

    1 项目说明 项目采用 maven 组织 ,依赖 mysql-connector-java,org.mybatis,junit pom 依赖如下: mysql 数据连接 : mysql-connect ...