# Change Navigation Pane Text

## Content



To change the navigation pane text, simply set the **C1Scheduler.NextAppointmentText** and **C1Scheduler.PreviousAppointmentText** properties.

The schedule will now look similar to the following image:

![](https://cdn.mescius.io/document-site-files/images/4c5f07fe-a0aa-4d09-95ef-6685908019cd/graphics/navigationpanebuttons.png)

To change the navigation pane text at design time, follow these steps:

1.  Add a C1Scheduler control to your window.
2.  In the Properties window, set the C1Scheduler.NextAppointmentText property to **Forward**.
3.  Set the C1Scheduler.PreviousAppointmentText property to **Back**.

**Using XAML**

The following XAML sets the C1Scheduler.NextAppointmentText and C1Scheduler.PreviousAppointmentText properties.

```xml
<c1:C1Scheduler Margin="15,15,0,12" Name="scheduler" NextAppointmentText="Forward" PreviousAppointmentText="Back"></c1:C1Scheduler>
```