DCSIMG
Ribbon - Arik Poznanski's Blog

Arik Poznanski's Blog

It CAN be done with .NET

News

MVP

MCC

CodeProject MVP

MCPD

MCTS

Subscribe to my blog by email

Arik Poznanski LinkedIn Profile

Email: arik.com at gmail dot com
or, use this form

Locations of visitors to this page


Sela Group

Sela Canada

DZone MVB

Links

Official Blogs

WPF / SL Blogs

Developers Blogs

Browse by Tags

All Tags » Ribbon (RSS)
Windows Ribbon for WinForms: FAQ
While working on the Windows Ribbon Framework I’ve came across many repeating questions from users. So I’ve decided to write a Frequently Asked Questions post regarding the Windows Ribbon Framework and its wrapper Windows Ribbon for WinForms . The questions were collected from the Windows Ribbon Development forum , Windows Ribbon for WinForms Discussions and from comments posted on my blog .   What are the supported platforms for the Windows Ribbon Framework? The Windows Ribbon Framework is...
Ribbon with C++, Post 6: Ribbon Dynamic Structure Capabilities
This is the 6 th and last post about using Windows Ribbon Framework features in C++. You can find the previous parts h ere: Part 1 , Part 2 , Part 3 , Part 4 & Part 5 . In this post we will dive into the ribbon's dynamic structure capabilities, i.e. we will learn about the different ways to change the structure of the ribbon at runtime. Specifically we will learn about Application Modes and Contextual Tabs . We will see what are these features, when to use them and how. Application Modes...
Ribbon with C++, Part 5: Using Galleries with Windows Ribbon Framework
This is the 5 th post about Windows Ribbon Framework features. On previous posts we have introduced the ribbon framework, seen a complete example, and reviewed how to use buttons -based UI controls and how to control their layout . In this post we continue our exploration of the Windows Ribbon Framework, this time focusing on Gallery controls. We will learn what galleries are and what is the difference between an item gallery and a command gallery. We will learn about the different gallery controls...
Ribbon with C++, Part 4: Layout Controls in Windows Ribbon Framework
This is the 4 th post about Windows Ribbon Framework features. On previous posts we have introduced the Windows Ribbon Framework, shown a complete example of how to develop a ribbon enabled application and reviewed the different buttons -based UI controls that the ribbon framework provides. In this post we continue our review of the various features in the Windows Ribbon Framework. This time we will focus on a task that every ribbon application developer should address: How to layout UI controls...
Ribbon with C++, Part 3: Using Buttons with Windows Ribbon Framework
On previous posts we have seen an introduction to the Windows Ribbon Framework and learned how to develop a ribbon enabled application . In this post we continue our review of the various features in the Windows Ribbon Framework. This time we will focus on the most common feature in the ribbon: Buttons. I assume the concept of a button needs no introduction; however, there are several kinds of buttons available with the Windows Ribbon Framework and in this post we will review them. But first, let's...
Ribbon with C++, Part 2: First Ribbon Enabled Application
In this post we continue our review of the Windows Ribbon Framework feature brought to us in Windows 7. For more information on the ribbon feature in general and Windows Ribbon Framework in particular, make sure you read Part 1 . Today we will see how to create a ribbon enabled application in C++ using the Windows Ribbon Framework . To show it we will build a small application with a ribbon that will contain two tabs, three groups and several buttons. As mentioned in the previous post, there are...
Ribbon with C++, Part 1: Introduction to the Windows Ribbon Framework
Due to popular demand I’ve decided to use the knowledge I’ve gain while creating the Windows Ribbon for WinForms project and write a series of posts about working with the Windows Ribbon Framework with Win32 C++ . In this post we will learn the basics of the Windows Ribbon Framework. What Is a Ribbon? Definition (from MSDN ): “The Windows Ribbon framework is a rich command presentation system that provides a modern alternative to the layered menus, toolbars, and task panes of traditional Windows...
Ribbon for WinForms: More Details On RibbonGenerator Tool
My associate, Bernhard Elbl , as published another two posts on his blog further explaining the latest improvements in the Ribbon for WinForms project. In the first post Bernhard explains what is the RibbonGenerator and how it is generating the .ribbon files. In the second post he explains what does it takes to use the Ribbon for WinForms project using Visual Studio 2010 Express edition. I suggest everyone who use this project to check out these posts. Finally, I would like to thank Bernhard for...
Ribbon for WinForms: Quick Start Tutorial
Due to popular demand on instructions for how to use the new version of the Ribbon for WinForms project, I’ve asked Bernhard to write a small tutorial. Bernhard agreed and wrote an excellent quick start tutorial, which now I present to you: http://bernhardelbl.wordpress.com/2010/11/17/quickstart-tutorial-windows-ribbon-for-winforms/ Note that the first 3 steps should be done only the first time you create a ribbon enabled application. This leaves us with just a single step in the tutorial. Couldn...
Windows Ribbon for WinForms v2.6 Released
The Windows Ribbon for WinForms is a ribbon control designed to be used with WinForms applications. Yea, I know, WinForms is so last year, but it turns out people still use it and keep asking for features and bug fixes.. Anyway, it is a managed wrapper around Windows Ribbon Framework , provided by Microsoft in Windows 7 and Vista. More details on this project can be found in the project site: windowsribbon.codeplex.com . So, what’s new? Simplified use for the Ribbon control. Simply drag and drop...
Windows Ribbon for WinForms v2.5 Released – New Events Mechanism
The Windows Ribbon for WinForms is a managed wrapper around Windows Ribbon Framework, a free ribbon control that Microsoft provides in Windows 7 and Vista. More details on this project can be found in the project site: windowsribbon.codeplex.com . I’ve just released another update to the project. Note: this release contains breaking changes, only take it if you are starting a new project, or you don’t mind the needed updates to your code. Basically I’ve changed how events are exposed in the library...
Windows Ribbon for WinForms v2.4 Released – Added 64bit Support
The Windows Ribbon for WinForms is a managed wrapper around Windows Ribbon Framework, a free ribbon control that Microsoft provides in Windows 7 and Vista. More details on this project can be found in the project site: windowsribbon.codeplex.com . I’ve just released yet another update to the project. This release adds support for compiling the project on 64bit machines. If you use a 32bit machine, you are safe with your current version. The main change is how I compile the samples applications. Some...
Windows Ribbon for WinForms v2.3 Released – Bug fixes
The Windows Ribbon for WinForms is a managed wrapper around Windows Ribbon Framework, a free ribbon control that Microsoft provides in Windows 7 and Vista. More details on this project can be found in the project site: windowsribbon.codeplex.com . Anyway, I’ve just released a new update to the project. This release includes bug fixes related to all the gallery controls: DropDownGallery, SplitButtonGallery, InRibbonGallery and ComboBox. So, if you had any issues with these controls, make sure you...
Windows Ribbon Framework - Visual Basic .NET Samples
Since so many people asked, I’ve created a Visual Basic .NET version of the Windows Ribbon for WinForms samples using Instant VB by Tangible Software Solutions . Their demo version is limited to converting projects up to 1000 lines, but this was enough for me to convert the samples project. The new VB.NET samples have been uploaded to the project site . That’s it for now, Arik Poznanski.
Crash while closing application that uses Windows Ribbon Framework
Since that’s the third time I’ve been asked about it, and in fact came across the problem myself, I thought I should blog my reply to help future users. Problem Description You use the Windows Ribbon Framework , either directly (in C++) or in managed code using my Windows Ribbon for WinForms library. You add a close button to the ribbon which closes the application. The application crash on close. Don’t cut the branch you sit on The problem is that you try to call ribbon.DestroyFramework , which...
Posted: Apr 14 2010, 12:28 AM by arik | with 4 comment(s)
תגים:, , ,
More Posts Next page »