jeffwilcox / wp-thememanager

Windows Phone ThemeManager allows for easy overriding of the Dark or Light themes
89 stars 26 forks source link

System tray text not visible. #5

Closed ghost closed 11 years ago

ghost commented 11 years ago

Steps to reproduce:

Thank you for resolving this issue. BTW the library is awesome!

jeffwilcox commented 11 years ago

Got it. The foreground color may need to be set... Will look in to it.

On Mon, Dec 3, 2012 at 2:08 PM, nuwandapl notifications@github.com wrote:

Steps to reproduce:

  • create new WP 7.1 project
  • in main page constructor initialize SystemTray ProgressIndicator

    var progressIndicator = new ProgressIndicator(); SystemTray.SetProgressIndicator(this, progressIndicator); progressIndicator.IsVisible = true; progressIndicator.Text = "Test";

    • Launch application on the phone with light theme
  • The text on the tray and the standard tray (time) are visible
  • Close application and add themeManager via NuGet
  • Switch to DarkTheme in App.xaml.cs
  • Run the application.
  • Now the text and tray is not visible

Thank you for resolving this issue. BTW the library is awesome!

— Reply to this email directly or view it on GitHubhttps://github.com/jeffwilcox/wp-thememanager/issues/5.

ghost commented 11 years ago

You're so quick. Thanks!

jeffwilcox commented 11 years ago

Hi, This is fixed now - I've also pushed the fix to the NuGet packages.

ghost commented 11 years ago

Thank you so much! Works like a charm :)