I'm looking for a method to pick a random Brush in Brushes collection (Aqua,Azure, ...Black,...). Any clue?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

You can use a bit of reflection, like so:

    private Brush PickBrush()
    {
        Brush result = Brushes.Transparent;

        Random rnd = new Random();

        Type brushesType = typeof(Brushes);

        PropertyInfo[] properties = brushesType.GetProperties();

        int random = rnd.Next(properties.Length);
        result = (Brush)properties[random].GetValue(null, null);

        return result;
    }

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.

link|improve this answer
Thanks :) Thats what i was looking for. – ojsim May 21 '11 at 21:19
feedback

If you simply want random colors, any random colors, just use a Random object to generate (a)rgb values between 0 and 255.

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 Brushes is a class (as opposed to an `enum') it gets a bit trickier to randomly fetch a static property, but you could use reflection to do it. Store all of the property names via reflection in a lookup table and then use reflection once again to get the value of the property that corresponds to the stored name.

private List<Brush> _brushes;
private void InitBrushes()
{
    _brushes = new List<Brush>();
    var props = typeof(Brushes).GetProperties( BindingFlags.Public | BindingFlags.Static );
    foreach( var propInfo in props )
    {
        _brushes.Add( (Brush)propInfo.GetValue( null, null ) );
    }
}

And to get a random Brush...

private Random _rand = new Random();
private Brush GetRandomBrush()
{
   return _brushes[_rand.Next(_brushes.Count)];
}

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.

link|improve this answer
feedback

The Brushes is not a collection, it's a class with a lot of static properties. You could pick out the static properties with reflection, but I would suggest that you just create an array with the brushes that you want:

Brush[] brushes = new Brush[] {
  Brushes.AliceBlue,
  Brushes.AntiqueWhite,
  Brushes.Aqua,
  ...
  Brushes.YellowGreen
};

Then you can easily pick one by random:

Random rnd = new Random();
Brush brush = brushes[rnd.Next(brushes.Length)];
link|improve this answer
1  
I don't think the one time cost of using reflection would justify this approach. You also get the benefit of grabbing all properties if the class is ever modified in a future version of the framework. Is there another reason you suggest doing it this way? – Ed S. May 21 '11 at 21:58
@Ed S.: A lot of people seem to be using reflection as the first resort, so I suggested an alternative to show that you don't have to use reflection for everything. – Guffa May 21 '11 at 22:47
1  
Yeah, that's why I mentioned doing it this way as as well. That said, this is a case in which reflection seems to be the best route. – Ed S. May 22 '11 at 1:09
feedback

Try something like:-

Brush myBrush = myBrushes[Math.Random*10];
link|improve this answer
Well, no, I'm trying to get a Brush from Brushes which is not a custom collection. I can't access to Brushes like this because it's a type and not an array. – ojsim May 21 '11 at 21:00
Note that the OP is looking for a solution in C#. – Michael Petrotta May 21 '11 at 21:01
The part that the OP needs explained is how to store a collection of all the predefined brushes in the first place, so this doesn't really help. As each brush is a static property of the Brushes class you would need to use reflection to get them all ( you could always store them manually too, but that would be a bit onerous and your code would be vulnerable to breaking if the class was added to later). – Ed S. May 21 '11 at 21:02
Yes I'm looking for the Reflection solution. – ojsim May 21 '11 at 21:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.