[WPF/C#] Dynamic Buttons + Event Handling

Hey everyone!
In .NET, you don’t have something like eval or this[object] to dynamically map some string to an actual object. While it seems like that would make attaching events to dynamically created objects difficult, it is actually fairly straightforward.

First, here is the demo - Click to download ([URL=“http://www.kirupafx.com/DynamicButtons/setup.exe”]If you are using a non-IE browser, click here). You can hover over buttons, but the thing I want to focus on is when you click on a button. Before any of that, here is the obligatory screenshot:

The code is:

public void populateButtons()
{
    int xPos;
    int yPos;
 
    Random ranNum = new Random();
 
    for (int i = 0; i < 50; i++)
    {
        Button foo = new Button();
        Style buttonStyle = Window.Resources["CurvedButton"] as Style;
 
        int sizeValue = ranNum.Next(50);
 
        foo.Width = sizeValue;
        foo.Height = sizeValue;
        foo.Name = "button" + i;
 
        xPos = ranNum.Next(300);
        yPos = ranNum.Next(200);
 
        foo.HorizontalAlignment = HorizontalAlignment.Left;
        foo.VerticalAlignment = VerticalAlignment.Top;
        foo.Margin = new Thickness(xPos, yPos, 0, 0);
 
        foo.Style = buttonStyle;
 
        **[COLOR=green]foo.Click += new RoutedEventHandler(buttonClick);[/COLOR]**
        LayoutRoot.Children.Add(foo);
   }
}
 
**[COLOR=green]private void buttonClick(object sender, EventArgs e)[/COLOR]**
**[COLOR=green]{[/COLOR]**
**[COLOR=green]  Button clicked = (Button) sender;[/COLOR]**
**[COLOR=green]  MessageBox.Show("Button's name is: " + clicked.Name);[/COLOR]**
**[COLOR=green]}[/COLOR]**
 

The code I have highlighted in green is really what is relevant for detecting a Mouse Click event and routing that event to the appropriate method, which in this case, is called buttonClick.

Notice that the first argument to buttonClick is of type object. That means, I need to typecast our object sender to the type Button before I can actually use it to access the properties I assigned in the populateButtons method. In the above example, if you click on a button, a MessageBox appears with the button’s name as determined earlier.

I have attached the Source file below :slight_smile:

Cheers!
Kirupa :goatee:

if you could explain how you created the button style it will very helpful.

Thanks,
Santosh

Style buttonStyle = Window.Resources[“CurvedButton”] as Style;

the above line throws error in silverlight 2.0

This example only works in WPF. I will look into converting this into a SL2 example soon :slight_smile: