在C#WPF的列表框中添加一个按钮(或任何控件)?
发布时间:2020-12-15 05:40:40 所属栏目:百科 来源:网络整理
导读:我知道这可能很简单,但我一直在搜索谷歌,我真的没有多少理由. 我想以一个按钮为例,并以编程方式将其添加到列表框中,而不是在xaml中. 我目前的做法是: Button testButton = new Button();listbox.Items.add(testButton); 解决方法 你试过这个…… private vo
我知道这可能很简单,但我一直在搜索谷歌,我真的没有多少理由.
我想以一个按钮为例,并以编程方式将其添加到列表框中,而不是在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"); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐
热点阅读