在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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: BackgroundThe 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 here: [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 ControlReminder: 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: 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, its not going to harm your computer or project if you select all the items belongs to ribbon (by default). Its 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 the solution.
Open the designer of Main Form. In this example, Form1.Designer.cs. Add these three lines of code Copy Code
private System.Windows.Forms.Ribbon ribbon1;
ribbon1 = new System.Windows.Forms.Ribbon();
this.Controls.Add(ribbon1);
into 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 Double click and open
Lets continue... 4. Click on the Ribbon and click Add Tab. 5. Click on the newly added 6. Click on the newly added 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 [
7. Try to add some buttons into the 8. Click on the 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 12. Click on the RibbonButton, go to properties > Click on Events > Double Click on event of
13. Events created. 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 Note: Inherit the Main Form to 16. In the code for Copy Code
public partial class Form1 : Form
to 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. Start1. Lets design a ribbon winform something like this as example. In the properties window, set
2. Create another simple another form that will be loaded into the MDI Container of 3. At code behind of
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 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. 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. Codes for loading Form1 into MDI:
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. Codes for closing all opened form in MDI:
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 RibbonYou may also want to have a look at: Part 6: How to Make a New Theme, Skin for this Ribbon ProgrammaticallyDefault 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 at Download. You can Build 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.
Part 7: Known IssuesAre resolved.Article Change Log:
12 Nov 2013 - Minor update on Part 6: Step 4: private void ChangeTheme() 09 Oct 2013 - Release of Version 07 Oct 2013 (new style 2013, several bug fixes) 11 May 2013 - Update guides for Using Ribbon with MDI Enabled WinForm (Part 4)
10 May 2013 - Release of Version 10 May 2013 (several bug fixes)
11 Mar 2013 - Preliminary solution for the RibbonForm DockStyle.Fill issue in Win 7 24 Feb 2013 - Release of Version 24 Feb 2013 (several bug fixes) 13 Jan 2013 - Release of Version 13 Jan 2013 (Include a ThemeBuilder) 02 Jan 2013 - Introduce new compiled version of ribbon, released on 10 Jan 2012. 11 Apr 2012 - Initial release.LicenseThis article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL) 转自:http://www.codeproject.com/Articles/364272/Easily-Add-a-Ribbon-into-a-WinForms-Application-Cs#anPart2 |
请发表评论