在窗体上添加一个“Menustrip”控件,并在菜单编辑器中建立名为“列表项”的主菜单。在主菜单下添加两个子
在窗体上添加一个“Menustrip”控件,并在菜单编辑器中建立名为“列表项”的主菜单。在主菜单下添加两个子菜单,名称分别为“AddItem”和”RemoveItem“,...
在窗体上添加一个“Menustrip”控件,并在菜单编辑器中建立名为“列表项”的主菜单。在主菜单下添加两个子菜单,名称分别为“AddItem”和”RemoveItem“,标题分别为”添加“和”删除“。然后,在窗体上添加一个列表框(名称为”listBox1“)和一个文本框(名称为”textBox1“)。程序运行后,执行“添加”菜单命令,则把文本框中的内容添加到列表框中;执行“删除”菜单命令,则把文本框中指定的列表项从列表中删除掉。
代码,,,谢谢!!! 展开
代码,,,谢谢!!! 展开
1个回答
展开全部
如果不能添加重复项,如下
private void AddItem_Click(object sender, EventArgs e)
{
string addItem = textBox1.Text.Trim();
if (!string.IsNullOrEmpty(addItem) && !listBox1.Items.Contains(addItem))
{
listBox1.Items.Add(addItem);
}
}
private void RemoveItem_Click(object sender, EventArgs e)
{
string removeItem = textBox1.Text.Trim();
if (!string.IsNullOrEmpty(removeItem) && listBox1.Items.Contains(removeItem))
{
listBox1.Items.Remove(removeItem);
}
}
如果可以添加重复项,如下
添加:把AddItem_Click中!listBox1.Items.Contains(addItem)删了
删除:如果想一个一个删就不改,如果想一起删就改成:
private void RemoveItem_Click(object sender, EventArgs e)
{
string removeItem = textBox1.Text.Trim();
if (!string.IsNullOrEmpty(removeItem))
{
while (listBox1.Items.Contains(removeItem))
{
listBox1.Items.Remove(removeItem);
}
}
}
private void AddItem_Click(object sender, EventArgs e)
{
string addItem = textBox1.Text.Trim();
if (!string.IsNullOrEmpty(addItem) && !listBox1.Items.Contains(addItem))
{
listBox1.Items.Add(addItem);
}
}
private void RemoveItem_Click(object sender, EventArgs e)
{
string removeItem = textBox1.Text.Trim();
if (!string.IsNullOrEmpty(removeItem) && listBox1.Items.Contains(removeItem))
{
listBox1.Items.Remove(removeItem);
}
}
如果可以添加重复项,如下
添加:把AddItem_Click中!listBox1.Items.Contains(addItem)删了
删除:如果想一个一个删就不改,如果想一起删就改成:
private void RemoveItem_Click(object sender, EventArgs e)
{
string removeItem = textBox1.Text.Trim();
if (!string.IsNullOrEmpty(removeItem))
{
while (listBox1.Items.Contains(removeItem))
{
listBox1.Items.Remove(removeItem);
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询