我有一个按钮,每次单击时都会将此 StackPanel 添加到列表框中。里面是一个按钮。我试图弄清楚如何将代码添加到它正在添加的这个按钮。理想情况下,我希望该按钮成为删除按钮,因此它将删除列表中的该元素(本身)。我只是想弄清楚如何为我动态创建的按钮添加功能。希望这是有道理的
谢谢你的帮助!
private void Button_Click_1(object sender, RoutedEventArgs e)
{
StackPanel stackPanel = new StackPanel();
stackPanel.Orientation = System.Windows.Controls.Orientation.Horizontal;
CheckBox checkBox = new CheckBox();
checkBox.IsChecked = true;
TextBox textBox = new TextBox();
textBox.Width = 100;
textBox.Text = textBox1.Text;
Button button = new Button(); //HOW DO I ADD CODE TO THIS BUTTON?
stackPanel.Children.Add(checkBox);
stackPanel.Children.Add(textBox);
stackPanel.Children.Add(button); //HOW DO I ADD CODE TO THIS BUTTON?
listBox1.Items.Add(stackPanel);
}