WinUI 3 UWP - 选择应用主题
WinUI 3 UWP - Choose appo theme
我正在为 Windows 11 开发一个 WinUI 3 UWP 应用程序,该应用程序自动默认为 Windows 选择的主题。有没有办法让用户选择?
这是更改整个应用程序主题的方法:
if (Window.Current.Content is FrameworkElement rootElement)
{
rootElement.RequestedTheme = ElementTheme.Light; //.Dark, .Default
}
我正在为 Windows 11 开发一个 WinUI 3 UWP 应用程序,该应用程序自动默认为 Windows 选择的主题。有没有办法让用户选择?
这是更改整个应用程序主题的方法:
if (Window.Current.Content is FrameworkElement rootElement)
{
rootElement.RequestedTheme = ElementTheme.Light; //.Dark, .Default
}