SystemTray.SetForegroundColor Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the value of the ForegroundColor attached property for a specified phone application page..
Assembly: Microsoft.Phone (in Microsoft.Phone.dll)
Parameters
- element
- Type: System.Windows.DependencyObject
The page for which to set the ForegroundColor attached property.
- color
- Type: System.Windows.Media.Color
The foreground color to set for the system tray.
The following code example shows how to use the SystemTray class in conjunction with the ProgressIndicator class.
using Microsoft.Phone.Shell; namespace SystemTrayTest { public partial class MainPage : PhoneApplicationPage { ProgressIndicator prog; public MainPage() { InitializeComponent(); SystemTray.SetIsVisible(this, true); SystemTray.SetOpacity(this, 0.5); SystemTray.SetBackgroundColor(this, Colors.Purple); SystemTray.SetForegroundColor(this, Colors.Yellow); prog = new ProgressIndicator(); prog.IsVisible = true; prog.IsIndeterminate = true; prog.Text = "Click me..."; SystemTray.SetProgressIndicator(this, prog); } } }
Show: