문제

I would like to know how I can compare a "System.Drawing.KnownColor" with a "System.Drawing.Color".

Just testing with "IsNot" is not allowed. VB.NET tells me that these 2 objects are not comparable.

I see that KnowColor has the function "CompareTo" which does accept Color as an argument, but the return value is not a Boolean but an Integer. So I am not sure if that is really what I am looking for.

도움이 되었습니까?

해결책

Use Color.FromKnownColor() to get a corresponding Color instance at runtime, and then you will be able to compare them.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top