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