문제

System.Drawing.Color has a private field int state which makes equality a bit more tricky than one would expect from a struct.

Anyone know what on earth it's for? Who, what and why sets and reads it?

도움이 되었습니까?

해결책

As far as i understand, it is compared to theese values:

    private static short StateKnownColorValid   = 0x0001;
    private static short StateARGBValueValid    = 0x0002;
    private static short StateValueMask         = (short)(StateARGBValueValid);
    private static short StateNameValid         = 0x0008;
    private static long NotDefinedValue = 0;

http://reflector.webtropy.com/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/CommonUI/System/Drawing/Color@cs/1/Color@cs

So my shot is that its used to dertermine if its a "System Color" or a user defined from e.g. ARGB values.

public bool IsKnownColor 
{
    get { return((state & StateKnownColorValid) != 0);}
}

다른 팁

The Color struct overrides the Equals method and does therefore automatically do the right thing when colors are tested for equality.

The Equals method compares the value, state, knownColor and name fields.

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