在我的表单中有TextBox1和ListBox1,buttonAdd,buttonRemove
buttonAdd =>好的,我可以做到。 buttonRemove:删除部分时: - 从文本框中删除条目:检查列表框项目中的一个项目应该删除,如果有清除,如果没有,则找不到该消息 - 删除列表框中的选定项目
这是我的想法:
private void butonRemove_Click(object sender, EventArgs e)
{
if (textbox1.Text != "")
{
int i = 0;
while (i <= listbox1.Items.Count)
{
string Item_remove = textbox1.Text;
if (listbox1.Items[i].ToString().Contains(Item_remove))
{
DialogResult conf_remove;
conf_remove = MessageBox.Show("Do you wwant to remove: " + listbox1.Items[i].ToString(), "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (conf_remove == DialogResult.Yes)
{
listbox1.Items.RemoveAt(i);
break;
}
else if (conf_remove == DialogResult.No)
i++;
}
else
{
MessageBox.Show("Not found");
break;
}
}
textbox1.Text = "";
textbox1.Focus();
}
else if (listbox1.SelectedIndex < 0)
MessageBox.Show("Please select item to remove");
else
listbox1.Items.Remove(listbox1.SelectedItem);
}
请帮我解决,谢谢
答案 0 :(得分:4)
以下是删除项目的代码。
private void buttonRemove_Click(object sender, EventArgs e) {
if (listBox1.SelectedIndex == -1) { // Not Selected Anything
MessageBox.Show("Select an item to delete");
}
else {
listBox1.Items.RemoveAt(listBox1.SelectedIndex); // Remove item
}
}
答案 1 :(得分:0)
这样的东西?
void buttonRemove_Click(object sender, EventArgs e)
{
string matchcode = TextBox1.Text;
ListItem item = this.ListBox1.Items.FindByText(matchcode);
if (item != null)
{
//found
this.ListBox1.Items.Remove(item);
}
else
{
//not found
MessageBox.Show("is not found");
}
}
答案 2 :(得分:0)
这就是您要寻找的,它也可以控制您需要的所有验证。
if (ListBox.SelectedIndex == -1)
{
if (ListBox.NumberOfItems == 0) // if no index, need to select a row!
{
MessageBox.Show("No items to remove!");
}
else
{
MessageBox.Show("Please select an item first!");
}
}
else
{
ListBox.Items.RemoveAt(lstStorage.SelectedIndex);
}
这将删除已选择的项目,并进行所需的验证。
我还评论了一些代码,告诉你哪些部分意味着什么。 如果您需要有关其工作原理的更多解释,请询问:)