-
Notifications
You must be signed in to change notification settings - Fork 19
Introduction
So, here is the plan: I’ll write a series of posts regarding using the Windows Ribbon with .NET WinForms.
The goal: Having .Net wrappers for using Windows Ribbon in WinForms applications and a set of examples of how to use each and every ribbon feature. Windows Ribbon is also called “UIRibbon” or as Microsoft development title “Scenic Ribbon”.
Development methodology I’ll develop a library that will hold all the relevant classes, interfaces and native functions.
Along with the library I will develop a sample WinForms application (or more) that will show how to correctly use the library.
The most updated version of the code will be available on Github.
Background So, before we start to code, let’s give some background on the subject.
Definition (from MSDN): “The Windows Ribbon (Ribbon) framework is a rich command presentation system that provides a modern alternative to the layered menus, toolbars, and task panes of traditional Windows applications."
In Office 2007 Microsoft introduced a new way to organize UI in an application. The problem with the old UI was that it wasn’t flexible enough to represent the majority of office features. (People actually kept asking for features that already existed but were hidden deep in the menus…)
[Microsoft Word 2007 Ribbon]
After the Office 2007 Ribbon turned out to be a success, many UI companies provided their own implementation for a ribbon control to be used in your application. When Microsoft realized they were onto something good they decided to supply the Ribbon feature to the general public. They have released 3 (!) Ribbons:
-
MFC version, available in Visual Studio 2008 SP1, to be used by native MFC developer
-
WPF version, available in WPF toolkit for .Net 3.5 SP1 or integrated in .NET 4.5, to be used by managed WPF developers
-
Windows Ribbon, available in Windows 7 and newer Windows versions as a COM object [and in a future Vista update], to be used by native win32 developers.
So, what about managed WinForms users? They should use the third, COM based version. So, the purpose of these posts is to give you a working example of using the Windows Ribbon within a WinForms application.
Why use Windows Ribbon? Note that the question I want to answer is not "Why use A ribbon control?" but "Why use THIS ribbon control?" Why not use other ribbon controls? There are dozens of Third-party controls; some of them are free.
The main reason why to use the Windows Ribbon Framework: It’s developed by Microsoft. This means:
-
Since it’s the original one, it contains ALL the features, as opposed to other free/commercial ribbon controls which always have those "not implemented" sections.
-
It has COMPLETE support and integration with windows 7 UI & accessibility features. Just think about touch screen support or high DPI screens compatibility. Newer versions of Windows are welcome.
-
Basics
- Introduction, Background on the windows ribbon
- Basic Ribbon Wrapper Basic .NET wrappers for windows ribbon.
- Quickstart Tutorial
- First WinForms Ribbon Application How to create an empty WinForms application with ribbon support.
-
Working with Ribbon Controls
- Application Menu with Buttons How to use the ribbon application menu.
- Application Menu with SplitButton and DropDownButton How to use the ribbon application menu with ribbon split button and ribbon dropdown button controls.
- Tabs, Groups and HelpButton How to use ribbon tabs, groups and the ribbon help button control.
- Spinner How to use the ribbon spinner control.
- ComboBox How to use the ribbon combo box control.
- DropDownGallery, SplitButtonGallery and InRibbonGallery How to use the ribbon drop down gallery, split button gallery and in ribbon gallery controls.
- CheckBox and ToggleButton How to use the ribbon check box and toggle button controls.
- DropDownColorPicker How to use the ribbon drop down color picker control.
- FontControl How to use the ribbon font control.
- ContextualTabs How to work with ribbon contextual tabs.
- ContextPopup How to work with ribbon context popup.
- RecentItems How to work with ribbon recent items control.
- QuickAccessToolbar How to work with the ribbon quick access toolbar.
- The Ribbon Class How to work with the ribbon class. Methods, Properties, Events
- EventLogger Since Windows 8: Logging ribbon events
- UICollectionChangedEvent How to work with the ChangedEvent in an IUICollection
-
Working with miscellany Ribbon features
- ApplicationModes How to work with ribbon application modes.
- SizeDefinition How to define custom size definitions for ribbon group elements.
- Localization How to localize a ribbon.
- Changing Ribbon Colors How to change the ribbon colors.
- Working with Images How to work with images in the ribbon.
- Use Ribbon as External DLL How to load ribbon resources from external DLLs.
- Wrapper class RibbonItems An auto generated wrapper class from the ribbon markup.
-
Designing, building, previewing Windows Ribbon with RibbonTools
- RibbonTools basics Settings, Command line, ...
- Create a new project Create a WordPad sample project
- Preview the Ribbon
- Specifying Ribbon Commands
- Designing Ribbon Views
- Convert Images to Alpha Bitmaps
-
Modeling Guidelines
-
How to ...