I'm using System.Drawing.Color, is there anything in Visual Studio that can display the color for the name?
For example if I used Color.Cornsilk what would color would be displayed?
|
I'm using System.Drawing.Color, is there anything in Visual Studio that can display the color for the name? For example if I used | ||||
|
feedback
|
|
The Windows Forms properties window allows you to select Color related properties using a "Color Picker" that displays the actual color next to the name. Just type in the color name within the property value area, press enter, and if the name is a known .NET color, it is shown. | |||
|
feedback
|
|
You could test the color on any control through VS designer. Anyway named color samples can be found anywhere on the web. | |||
|
feedback
|
|
Take a look at Jon Skeets Answer from this post http://stackoverflow.com/questions/225953/c-color-constant-rgb-values | |||
feedback
|