怎么样把文本框里面的值添加到ListBox里面
添加进去之后,可以对listBox里面的选项进行在线编辑和删除操作!!!急求代码
------解决方案--------------------
1: 动态的添加列表框中的项:
ListBox.Items.Add("所要添加的项");//你文本框值
//删除
2:if(this.listView1.SelectedItems!=null)
{
this.listView1.SelectedItems[0].Remove();
}
//提示:在读取和删除中如果需要多重选择的项进行处理可以使用For循环,如for(int i=0;i<SelectedItems.Count;i++)。
int Count = ListBox1.Items.Count;
int Index = 0;
for(int i=0;i< Count-1;i++)
{
ListItem Item = ListBox1.Items[Index];
if(ListBox1.Items[Index].Selected == true)
{
ListBox1.Items.Remove(Item);
Index--;
}
Index++;
}
------解决方案--------------------listBox1.Items.看里面都有什么方法。
------解决方案--------------------this.ListBox1.Items.Add("hello");
this.ListBox1.Items.Add("adfsdfsf");
this.ListBox1.Items.Remove("adfsdfsf");//在集合中移除指定的字符串
this.ListBox1.Items.RemoveAt(0);//在集合中移除指定的索引位置
------解决方案--------------------