UWP AppBar颜色c#

时间:2016-10-30 09:28:34

标签: c# xaml uwp win-universal-app

我正在尝试设计Windows通用应用程序(Windows 10),为了让一切看起来正确,我希望改变应用程序边框颜色。我之前正在检查论坛,而且解决方案似乎没有。

感谢你所有的时间

这是我发现的一个例子,即使是我的系统颜色也是深灰色的薄荷色。

Fitbit example

1 个答案:

答案 0 :(得分:3)

来自UWP Windows 10 App, TitleBar and Status bar customization

if (ApiInformation.IsTypePresent("Windows.UI.ViewManagement.ApplicationView"))
{
    var titleBar = ApplicationView.GetForCurrentView().TitleBar;
    if (titleBar != null)
    {
        titleBar.ButtonBackgroundColor = Colors.DarkBlue;
        titleBar.ButtonForegroundColor = Colors.White;
        titleBar.BackgroundColor = Colors.Blue;
        titleBar.ForegroundColor = Colors.White;
    }
}