我想创建一个 if 语句来识别已从特定列表框中删除了哪个字符串。我想我可以做一个类似于下面的 if 语句并让它工作,但它告诉我它有无效的论点 - 如果有人能指导我,我将不胜感激
private void button2_Click(object sender, EventArgs e)
{
listBox2.Items.RemoveAt(listBox2.SelectedIndex);
if(listBox2.Items.RemoveAt(listBox2.SelectedItems.ToString().Equals("Test")))
{
picturebox.Image = null;
}
}