I new for WPF application. My requirement is to change the color of the title bar to blue color. I search a lot for the same thing but I failed to find out the way to achieve it. Thanks.
Asked
Active
Viewed 9,661 times
0
-
See the accepted answer here https://stackoverflow.com/questions/1283006/changing-wpf-title-bar-background-color – Guy Kempsell May 25 '17 at 10:17
-
I did with Package MahApps.Metro. Thanks. – Dipak May 25 '17 at 10:31
-
Possible duplicate of [How can I style the border and title bar of a window in WPF?](https://stackoverflow.com/questions/9978444/how-can-i-style-the-border-and-title-bar-of-a-window-in-wpf) – StayOnTarget Jul 24 '19 at 19:16
2 Answers
4
You need to set the WindowStyle="None" and then build your own window as this question How to create custom window chrome in wpf? suggests.

Gareth
- 913
- 6
- 14
0
You need to use your own custom chrome. Can use community projects like MahApps.Metro to help you with this.

Kelly
- 6,992
- 12
- 59
- 76