我正在尝试使用 XAML 和 C# 制作一个应用程序,但我不知道如何更改主题,我搜索了很多并找到了这个东西
//App.xaml.cs
public App()
{
this.InitializeComponent();
App.Current.RequestedTheme = ApplicationTheme.Light; //theme changed to light,but still blacks
this.Suspending += OnSuspending;
}
请帮我解决这个请求的主题!