MAUI中Windows的标题栏颜色怎么设置

如下图所示,MAUI中Windows下的标题栏是灰色的,如何设置颜色,找了很久,在GitHub上的issue中找到了答案,

 

 

找到/Platforms/Windows/App.xaml

<maui:MauiWinUIApplication
    ...(此处省略)
    >
    <!--添加以下部分-->
    <Application.Resources>
        <ResourceDictionary>
            <SolidColorBrush x:Key="WindowCaptionBackground">#fff</SolidColorBrush>
            <SolidColorBrush x:Key="WindowCaptionBackgroundDisabled">#fff</SolidColorBrush>
        </ResourceDictionary>
    </Application.Resources>
</maui:MauiWinUIApplication>

更多的用法参考以下链接
https://github.com/dotnet/maui/issues/7123
https://github.com/dotnet/maui/pull/5811
https://learn.microsoft.com/en-us/windows/apps/develop/title-bar?tabs=winui3#full-customization

posted @ 2023-01-21 16:46  Yu-Core  阅读(335)  评论(0编辑  收藏  举报