我有几个按钮,我将它们放入 wrapPanel 循环中:
for (int i = 0; i < wrapWidthItems; i++)
{
for (int j = 0; j < wrapHeightItems; j++)
{
Button bnt = new Button();
bnt.Width = 50;
bnt.Height = 50;
bnt.Content = "Button" + i + j;
bnt.Name = "Button" + i + j;
bnt.Click += method here ?
wrapPanelCategoryButtons.Children.Add(bnt);
}
}
我想知道单击了哪个按钮并为每个按钮做一些不同的事情。例如生病有方法
private void buttonClicked(Button b)
生病发送点击按钮,检查类型,名称或ID,然后做一些事情。那可能吗?