I've been trying for hours to write a function that would return the real color (Color.Black for example) for SystemColors.WindowText and all of the other SystemColors and I finally (partially) succeeded. I just figured some of you might be looking for this as well and had a hard time (like me) finding a sample on the net.
I could not find any other way to achieve this. So if there's something obvious I overlooked please let me know
Also, when the ARGB values of the provided color doesn't exactly match an ARGB value of a known Color structure, then the ToString method will return something like "Color [A=255, R=161, G=157, B=157]". I've tried fixing this with the GetNearestColor method of a Graphics object but without luck so far. Anyone?
Regards, Ruffnekk
---
Is it my imagination or do buffalo wings taste just like chicken?
Code:
'The function:
Public Function ToRealColor(ByVal systemColor As Color) As Color
Dim iARGB As Integer = systemColor.ToArgb
Dim realColor As Color = ColorTranslator.FromWin32(iARGB)
Return realColor
End Function
'Calling the function and verify the result:
Dim RealColor As Color = ToRealColor(SystemColors.Windowtext)
MsgBox(RealColor.ToString)
'On my system it the msgbox shows "Color [Black]" as wished.
I could not find any other way to achieve this. So if there's something obvious I overlooked please let me know
Also, when the ARGB values of the provided color doesn't exactly match an ARGB value of a known Color structure, then the ToString method will return something like "Color [A=255, R=161, G=157, B=157]". I've tried fixing this with the GetNearestColor method of a Graphics object but without luck so far. Anyone?
Regards, Ruffnekk
---
Is it my imagination or do buffalo wings taste just like chicken?