In this part you will learn, using an example, the most important concepts to build quickly your first ribbon. We will see how to create a ribbon and how to hook events to its controls. You will be able to use the ribbon builder right away.
Let’s have a quick view of the structure of a ribbon. A ribbon is composed of tabs which are themselves composed of groups. Controls like button, dropdown, menu are part of an group. In most case, an add-in will have only one tab which will contain one or more groups. The most common control that will be used is a button.
The AddInContext class
In a new class project, create a static class named AddinContext that will keep the objects that you want to be unique in the application like Excel application instance, logger, an inversion of control container or a token cancellation. It will also be easier to dispose them when Excel closes
Note:
We have a reference to NetOffice.ExcelApi;
Program class (the entry point)
Name the starting class Program and it needs to be inheriting from IExcelAddIn (ExcelDna.Integration).
Only the method AutoOpen need to be filled.
In the AutoOpen method we will instantiate the unique instance of the Excel application from the AddinContext created above.
The ribbon class
Create a new class named Ribbon and it needs to be inheriting from RibbonFluent (AddinX.Ribbon.ExcelDna).
This class must be ComVisible in order for Excel-DNA to use it.
The following inherited methods will be created:
- CreateFluentRibbon : This is where you will define the UI part of the ribbon.
- CreateRibbonCommand : This is where you will define the callbacks methods for the controls using the control’s unique identifier.
- OnClosing : This is where you can dispose objects from the AddinContext class before Excel closes.
- OnOpening : This method is mainly used to listen to Excel’s events
Creating the first ribbon
We are going to create the first group with the 3 buttons from the above image.
- Those three buttons are in the same group named “Reporting”.
- One of those buttons is large while the other two are smalls.
- The first button is large and is named “Button 1” and use the Microsoft image “repeat”.
- The two others buttons are smalls and are respectively named “Contributor” and “Button 3”.
- The button “Contribitors” don’t have an image while the button “Button 3” is using the Microsoft image “Bold”.
We are going to see how to do it, it’s quick and easy to do!!!
Creating the new tab and group
Inside the inherited method CreateFluentRibbon, we will define the UI part. We will start by adding a tab and a group in the ribbon.
Adding buttons to the group
Then we will add the buttons. We will create one large button with a Microsoft Office image and a box with two regular size button.
To do so we will replace the code above .Items() by the below.
Note:
A screentip is a text that will be display when the control is hovered with the pointer of the mouse.
Note:
A supertip is a non-bold screentip.
The callback events
After adding the elements that will be part of the ribbon, it is necessary to define the events commands for those elements. In other terms, define how those elements will behave. The most common events are Enable and Visible, those events can be defined for nearly any elements part of a ribbon.
- Enable is called to define if the control should be enabled or not.
- Visible is called to define what condition need to be meet to display a control or group of controls.
Another important one is Action which is used to define the action that will be done when a control is clicked or selected.The elements are reference using them identifier defined during the creation of the ribbon.
The code that will be used to define those events is the following:
- When clicking on the button Button 1 a message box will be display stating “Add one more sheet”.
- Adding one more sheet will trigger the visibility condition for the box containing the two small buttons. The buttons will be visible if there is more than one sheet in the workbook.
- To enable the button Button 3, it is necessary to add an extra sheet as the condition to enable that button is to have more than two sheets.
In the method OnOpening, we need to refresh the ribbon when there is a change on a Excel sheet.
Note: We are using the Excel application from NetOffice.ExcelApi