shuhelohelo’s blog

Xamarin.Forms多めです.

Xamarin.FormsでNavigationPageのナビゲーションバーを非表示にする

各ページのContentPage要素の属性にNavigationPage.HasNavigationBar="False"を追加する.

<ContentPage
    x:Class="XFScrollPosition.Views.FadeHeader"
    xmlns="http://xamarin.com/schemas/2014/forms"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    xmlns:d="http://xamarin.com/schemas/2014/forms/design"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    NavigationPage.HasNavigationBar="False">

</ContentPage>