I'm looking for a method to pick a random Brush in Brushes collection (Aqua,Azure, ...Black,...). Any clue?
|
feedback
|
|
You can use a bit of reflection, like so:
That will do the trick. You may want to change the randomisation to use an external Random instance, instead of re-creating a new seed each time the method is called, as in my example. | |||
|
feedback
|
|
If you simply want random colors, any random colors, just use a If you actually want a named color (Brush) you could store all of the predefined values in a lookup table and randomly generate an index into it. As
And to get a random Brush...
I hope I didn't make any errors here, I'm on my phone and can't test it out, but you get the general idea. | ||||
|
feedback
|
|
The
Then you can easily pick one by random:
| |||||||||||
feedback
|
|
Try something like:-
| |||||||||
feedback
|