meds
meds

Reputation: 22916

ColorEditor missing from System.Drawing.Design?

I'm trying to use the ColorEditor class, according to Microsoft it's located in System.Drawing.Design:

http://msdn.microsoft.com/en-us/library/system.drawing.design.coloreditor.aspx,

however despite using that namespace the compiler says

it can't find ColorEditor, I checked myself in System.Drawing.Design and found it wasn't there.

Any ideas?

Upvotes: 0

Views: 1369

Answers (2)

Nikhil Vaghela
Nikhil Vaghela

Reputation: 930

Have you added System.Drawing.Design to the project reference ?

Upvotes: 2

max
max

Reputation: 34407

You must add reference to System.Drawing.Design assembly. Note that this assembly is not a part of .NET FW Client Profile.

Upvotes: 2

Related Questions