有没有办法立即应用主题更改?

时间:2012-03-17 10:13:21

标签: windows-phone-7

重新激活应用程序时,有没有办法立即应用主题更改? 暗/光似乎与它开始时相同。

   // 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");
    }

1 个答案:

答案 0 :(得分:0)

您可以尝试使用Phoney Tools库并检查PhoneTheme.IsDarkTheme属性。我之前使用过它,似乎效果很好。