gpt4 book ai didi

c# - 在 C# WPF 中向列表框添加按钮(或任何控件)?

转载 作者:太空狗 更新时间:2023-10-29 23:32:01 24 4
gpt4 key购买 nike

我知道这可能很简单,但我一直在谷歌搜索,但我确实没有取得太大进展。

我想以一个按钮为例,并以编程方式将其添加到列表框,而不是在 xaml 中。

我目前的策略是:

Button testButton = new Button();
listbox.Items.add(testButton);

最佳答案

你试过这个吗...

 private void Window_Loaded(object sender, RoutedEventArgs e)
{
Button b = new Button();
b.Content = "myitem";
b.Click += new RoutedEventHandler(b_Click);
listBox1.Items.Add(b);
}

void b_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show("Item CLicked");
}

关于c# - 在 C# WPF 中向列表框添加按钮(或任何控件)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17746410/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com