gpt4 book ai didi

c# - 如何强制Windows Phone 8应用程序以浅色主题运行

转载 作者:可可西里 更新时间:2023-11-01 08:55:12 26 4
gpt4 key购买 nike

我开发了一个 Windows Phone 应用程序,我希望该应用程序以浅色主题运行,而不管用户设置了什么。意味着有什么方法可以为 Windows Phone 8 应用程序设置默认主题。

最佳答案

您可以使用 Jeff Wilcox 的 ThemeManager

将它添加到您的项目(有可用的 NuGet package)并从 App() 构造函数中调用它。

public App()
{
// Global handler for uncaught exceptions.
UnhandledException += Application_UnhandledException;

// Standard Silverlight initialization
InitializeComponent();

// Phone-specific initialization
InitializePhoneApplication();

ThemeManager.ToLightTheme();

// Other code that might be here already...
}

您可以找到用法示例 on his website .

关于c# - 如何强制Windows Phone 8应用程序以浅色主题运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19272265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com