本文介绍了如何使用文本框值替换列表框值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用文本框值替换列表框值?
How to replace listbox value using Textbox value?
推荐答案
this.myButton.Click += (sender, eventArgs) => {
int index = MyListBox.SelectedIndex;
if (index < 0) return;
MyListBox.Items.Insert(index, myButton.Text);
MyListBox.SelectedIndex = index;
MyListBox.Items.RemoveAt(index + 1);
};
我怀疑其他许多专家都没有测试答案.有些甚至无法编译.
我测试了我的!
I suspect many other experts did not test the answers. Some would not even compile.
I tested mine!
foreach (ListItem l in ListBox1.Items)
{
if (l.Selected == true)
{
l.Text = TextBox1.Text;
}
}
这篇关于如何使用文本框值替换列表框值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!