I'm making a custom border window, but still want to use the caption background color that user choose in Desktop -> Personalize -> Color.
I expect I can get this color by SystemColors.ActiveCaptionBrush
or SystemParameters. WindowGlassBrush
, but it is others color.
How can I get that color? Thank.
Asked
Active
Viewed 1,680 times
2

NoName
- 7,940
- 13
- 56
- 108
-
1Is that what you want: [StackOverflow](http://stackoverflow.com/questions/13085959/get-aero-window-colour)? – gomi42 Mar 15 '15 at 12:13
1 Answers
0
You can use Color.FromArgb(153,180,209);

Ilknur Karaçelik
- 1
- 1
-
1
-
This is part of the answer: the current answer is here: https://stackoverflow.com/questions/13085959/get-aero-window-colour – Peyman Majidi Oct 03 '20 at 08:52