I got a grid of 5*5 with buttons (25 in total). I want to programatically assign background color for these and I want to know if there a way to do this instead of assigning one at a time like this:
btn1.Background = Color.Red;etc...
btn2.Background = Color.Blue;
btn3.Background = Color.Green;
Can I somehow use a loop?