This question already has an answer here:
- How to generate random color names in C# 14 answers
Do you know any method to generate a random Color (not a random Color Name!)?
I've already got one, but this one is'nt doing it correctly:
This only returns Green:
Random r = new Random();
BackColor = Color.FromArgb(r.Next(0, 256), r.Next(0, 256), 0);
This only returns Red:
Random r = new Random();
BackColor = Color.FromArgb(r.Next(0, 256), 0, 0);
This only returns Blue:
Random r = new Random();
BackColor = Color.FromArgb(0, 0, r.Next(0, 256));
I want my Code to return one, random Color, not only green/red/blue every time, as the above ones do.
How to solve this?
Any suggestion will be approved with joy!
Here's the answer I started posting before you deleted and then un-deleted your question:
The original version of your last method (pre-Edit) will return all different sorts of colors. I would be sure to use a single Random object rather than create a new one each time:
It produces all sorts of different colors: