Die neuen Universal Windows Plattform Apps bieten einem die Möglichkeit die Farbe der Titelleiste des Fensters anzupassen. Dieses Snippet zeigt ein Beispiel für ein grünes Layout, wie es die neue Excel App benutzt.
Benötigte Namespaces
Windows.UI
Windows.UI.ViewManagement
var view = ApplicationView.GetForCurrentView();
view.TitleBar.BackgroundColor = Colors.DarkGreen;
view.TitleBar.ForegroundColor = Colors.White;
view.TitleBar.ButtonBackgroundColor = Colors.DarkGreen;
view.TitleBar.ButtonForegroundColor = Colors.White;
view.TitleBar.ButtonHoverBackgroundColor = Colors.Green;
view.TitleBar.ButtonHoverForegroundColor = Colors.White;
view.TitleBar.ButtonPressedBackgroundColor = Color.FromArgb(255, 0, 120, 0);
view.TitleBar.ButtonPressedForegroundColor = Colors.White;
view.TitleBar.ButtonInactiveBackgroundColor = Colors.DarkGray;
view.TitleBar.ButtonInactiveForegroundColor = Colors.Gray;
view.TitleBar.InactiveBackgroundColor = Colors.DarkGreen;
view.TitleBar.InactiveForegroundColor = Colors.Gray;
Kommentare zum Snippet