XAMLとC#でアプリを作ろうとしているのですが、テーマの変更方法がわからず、ググってみたらこんなものが見つかりました
//App.xaml.cs
public App()
{
this.InitializeComponent();
App.Current.RequestedTheme = ApplicationTheme.Light; //theme changed to light,but still blacks
this.Suspending += OnSuspending;
}
このリクエストされたテーマで私を助けてください!