Reputation: 701
How to change the background color of Back button in native Windows 10 apps?
This is what it currently looks like:
Upvotes: 0
Views: 866
Reputation: 197
You can achive it in the code behind like this:
public MainPage()
{
this.InitializeComponent();
var appView = ApplicationView.GetForCurrentView();
appView.TitleBar.ButtonBackgroundColor = Colors.LightGreen;
}
Hope it works for you
Regards Ilija
Upvotes: 5