Search code examples
xamarin.formsuwptitlebar

Xamarin Forms UWP Hide Title Bar


I was wondering if anyone knew how to hide the title (gray) bar of a Xamarin Forms Universal Windows Platform application? I've seen some solutions for Android floating around, but I can't extrapolate an equivalent.

One of the Android solutions I've stumbled across: RequestWindowFeature(WindowFeatures.NoTitle);

enter image description here

Any suggestions/ideas would be greatly appreciated, thanks!


Solution

  • Solution:

    NavigationPage.SetHasNavigationBar(this, false);
    

    in the codebehind.