C#/Xamarin Maui

[.NET MAUI] NavigationPage Bar color 변경하기

kjun 2023. 3. 23. 00:09
728x90
728x170

App.xaml 단에 아래처럼 처리해 주면 모든 Navigation Page 의 Bar color , Bar Text Color 를 변경할 수 있습니다.

<Application.Resources>
  <ResourceDictionary>
    <Style TargetType="NavigationPage">
      <Setter Property="BarBackgroundColor" Value="#0D1A28"/>
      <Setter Property="BarTextColor" Value="White"/>
    </Style>
  </ResourceDictionary>
</Application.Resources>

결과

 

728x90
그리드형