Hi how to set R G B values in System.Drawing.Color.G ?
R G B
System.Drawing.Color.G
which is like System.Drawing.Color.G=255; is not allowed because its read o
System.Drawing.Color.G=255;
You could create a color using the static FromArgb method:
Color redColor = Color.FromArgb(255, 0, 0);
You can also specify the alpha using the following overload.