Loading

Win10 UAP 标题栏

//自定义标题栏 
           var view = Windows.UI.ViewManagement.ApplicationView.GetForCurrentView();
            ApplicationViewTitleBar titleBar = view.TitleBar;
			if (titleBar != null) {
				titleBar.ExtendViewIntoTitleBar = true;//隐藏
				titleBar.BackgroundColor = Color.FromArgb(84, 135, 205, 250);
				titleBar.ForegroundColor = Colors.White;
				titleBar.ButtonBackgroundColor = Color.FromArgb(84, 135, 205, 250);
				titleBar.ButtonForegroundColor = Colors.White;
			}

http://touchwp.com/view/343.html

posted @ 2015-05-31 14:32  androllen  阅读(272)  评论(0编辑  收藏  举报