| Ribbon for WinForms Task-Based Help > Adding Ribbon Items > Adding Items to the Configuration Toolbar |
The configuration toolbar (RibbonConfigToolBar) can contain as many commands as needed. To add Ribbon items to the configuration toolbar, complete the following steps:
Complete the following steps:

![]() |
Note: The following example uses an embedded resources containing an image. To embed a resource, from the Project menu, choose YourProjectName Properties. From the Resources tab, select Add Resource and choose to add an existing file or add a new one. |
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
my.C1Ribbon1.ConfigToolBar.Items.Add(new RibbonButton(Properties.Resources.question)) |
|
To write code in C#
| C# |
Copy Code
|
|---|---|
this.C1Ribbon1.ConfigToolBar.Items.Add(new RibbonButton(Properties.Resources.question)); |
|
The following configuration toolbar provides quick access to the Help button: