1
私のアプリケーションのタイトルバーボタンの背景色を変更しようとしています(戻るボタンと最小化/展開/閉じるボタン)。具体的には、戻るボタンの色が最小化/展開/閉じるボタンと異なるようにします。このコードは、戻るボタンと最小化/展開/閉じるボタンの色を変更します。どうやって色を別々に変えることができますか?UWP - 最小化/閉じるボタンの色を変更せずに戻るボタンの色を変更します。
var titleBar = ApplicationView.GetForCurrentView().TitleBar;
if (titleBar != null)
{
// I only want to change the back button color here, but this code
// changes both the back button and resize/close buttons color too
titleBar.ButtonBackgroundColor = Windows.UI.Colors.DarkBlue;
}