Skip to main content
Logo Appt Light

Screen title on Xamarin

Each screen should have a descriptive title, which helps users with identifying the screen.

With Xamarin Forms, we recommend setting an appropriate Title for each ContentPage.

public NewPage()
{
    SetBinding(Page.TitleProperty, new Binding("Appt homescreen")); 
}

Feedback?

Let us know!