这种方式获取的是一个CoreApplicationViewTitleBar对象,主要控制标题栏扩展等相关功能。后面的coreTitleBar指的就是这个对象。
var appTitleBar = Windows.UI.ViewManagement.ApplicationView.GetForCurrentView().TitleBar;
这种方式获取的是一个ApplicationViewTitleBar对象,主要用于控制标题栏背景色,最小化、最大化、关闭等按钮的颜色、背景色等。后面的appTitleBar指的就是这个对象。
我们自定义标题栏时这两个对象都会用到。 http://www.cnblogs.com/durow/p/4897773.html
隐藏标题栏:将应用界面扩展至 Titlebar 区域
CoreApplication.GetCurrentView().TitleBar.ExtendViewIntoTitleBar = true;
修改标题栏颜色:
var view = ApplicationView.GetForCurrentView(); // active view.TitleBar.BackgroundColor = Color.FromArgb(255, 8, 87, 180); view.TitleBar.ForegroundColor = Colors.White; // inactive view.TitleBar.InactiveBackgroundColor = Color.FromArgb(255, 8, 87, 180); view.TitleBar.InactiveForegroundColor = Colors.Black; // button view.TitleBar.ButtonBackgroundColor = Color.FromArgb(255, 8, 87, 180); view.TitleBar.ButtonForegroundColor = Colors.White; view.TitleBar.ButtonHoverBackgroundColor = Colors.Blue; view.TitleBar.ButtonHoverForegroundColor = Colors.White; view.TitleBar.ButtonPressedBackgroundColor = Colors.Blue; view.TitleBar.ButtonPressedForegroundColor = Colors.White; view.TitleBar.ButtonInactiveBackgroundColor = Colors.DarkGray; view.TitleBar.ButtonInactiveForegroundColor = Colors.Gray;