| InputPanel for WinForms Task-Based Help > Working with InputDataNavigator Items > Adding the Reload, Save, and Edit Buttons |
When an InputDataNavigator component is added to the C1InputPanel control, it appears with eight default buttons. Three additional buttons – "Save", “Edit”, and "Reload" – do not appear on the form by default, but can easily be added to the control.
Complete the following steps:
The C1InputPanel Collection Editor opens.
An InputDataNavigator component appears in the Members pane.

Complete the following steps:
The C1InputPanel Collection Editor opens.
An InputDataNavigator component appears in the Members pane.
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
Imports C1.Win.C1InputPanel |
|
To write code in C#
| C# |
Copy Code
|
|---|---|
using C1.Win.C1InputPanel; |
|
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
inputDataNavigator1.ShowReloadButton = True inputDataNavigator1.ShowSaveButton = True inputDataNavigator1.ShowEditButton = True |
|
To write code in C#
| C# |
Copy Code
|
|---|---|
inputDataNavigator1.ShowReloadButton = true; inputDataNavigator1.ShowSaveButton = true; inputDataNavigator1.ShowEditButton = true; |
|
The following graphic compares the default InputDataNavigator with one that has been modified using the steps in this topic: