Можно ли применить изменения темы сразу после повторной активации приложения?
Темнота / свет кажутся такими же, как и при запуске.
// Determine the visibility of the dark background.
Visibility darkBackgroundVisibility =
(Visibility)Application.Current.Resources["PhoneDarkThemeVisibility"];
// Write the theme background value.
if (darkBackgroundVisibility == Visibility.Visible)
{
MessageBox.Show("background = dark");
}
else
{
MessageBox.Show("background = light");
}