Tagged Questions
2
votes
1answer
277 views
Can I get the RGB of a system color in C# without using pinvoke?
I want to determine the RGB color of a system color such as SystemColors.HotTrack.
Is there a way to do this without resorting to using P/Invoke and GetSysColor (not including drawing into a bitmap ...
1
vote
1answer
150 views
Matching background color for COLOR_GRAYTEXT
(Related question to "Matching windows system colors: light on dark".)
There doesn't seem to be an "official" background color for COLOR_GRAYTEXT. This looks strange to me. Do you know any?
1
vote
2answers
202 views
Matching windows system colors: light on dark
I'm trying to make my app a good Windows citizen, so I use matching system colors (see "When selecting system colors, match but don't mix") as much as possible. However, sometimes light text on a dark ...