在c#中从ListView中删除项目
本文关键字:删除项目 ListView 中从 | 更新日期: 2023-09-27 18:05:33
我需要从ListView
中删除项目,我正在寻找的代码将显示一个消息框来确认,如果没有选择项目,它将显示一个错误消息框
这是我的代码,它不工作:(
private void button2_Click(object sender, EventArgs e)
{
if (listView1.SelectedItems != null)
{
var confirmation = MessageBox.Show(
"Voulez vous vraiment supprimer les stagiaires séléctionnés?",
"Suppression", MessageBoxButtons.YesNo, MessageBoxIcon.Question
);
if (confirmation == DialogResult.Yes)
{
for (int i = 0; i < listView1.Items.Count; i++)
{
if (listView1.Items[i].Selected)
{
listView1.Items[i].Remove();
i--;
}
}
}
}
else
{
MessageBox.Show("aucin stagiaire selectionnes", "erreur",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
错误不是在删除,但在MessageBox's
我有两个MessageBox's
,错误必须先显示在确认之前。
从结束数到0
for (int i = listView1.Items.Count - 1; i >= 0; i--)
{
if (listView1.Items[i].Selected)
{
listView1.Items[i].Remove();
}
}
然而,考虑到每个ListViewItem都有一个Index属性,你可以将它与SelectedItems集合一起使用,以这种方式准备一个解决方案,该解决方案具有避免冗余测试和对较少数量的项进行循环的优点。
同样,SelectedItems集合永远不会为空,如果没有选择,则集合为空但不为空。
所以你的代码可以重写为
if (listView1.SelectedItems.Count > 0)
{
var confirmation = MessageBox.Show("Voulez vous vraiment supprimer les stagiaires séléctionnés?", "Suppression", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (confirmation == DialogResult.Yes)
{
for (int i = listView1.SelectedItems.Count - 1; i >= 0; i--)
{
ListViewItem itm = listView1.SelectedItems[i];
listView1.Items[itm.Index].Remove();
}
}
}
else
MessageBox.Show("aucin stagiaire selectionnes", ...);
您不应该引用您在迭代期间使用的原始集合,而应该引用其他集合:
foreach(ListViewItem item in listView1.Items)
if (item.Selected)
listView1.Items.Remove(item);
//if (lvPhotos.SelectedIndices.Count > 0)
if (lvPhotos.CheckedIndices.Count > 0)
{
var confirmation = MessageBox.Show("Supprimer les photos séléctionnées ?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (confirmation == DialogResult.Yes)
{
// selected
//for (int i = lvPhotos.SelectedIndices.Count - 1; i >= 0; i--)
//{
// lvPhotos.Items.RemoveAt(lvPhotos.SelectedIndices[i]);
//}
// checked
for (int i = lvPhotos.CheckedIndices.Count - 1; i >= 0; i--)
{
lvPhotos.Items.RemoveAt(lvPhotos.CheckedIndices[i]);
}
}
}
您可以只使用这段代码而不使用——减量
listView1.Items[i].Remove();
注意:您也可以通过指定位置
RemoteAt method
您可以像这样更改代码。注意,ListView.SelectedIndices
集合保存了所选ListViewItems
的索引。只要从末尾到开始迭代它们,你不需要处理索引更新,但把它们留给for
循环:
if (listView1.SelectedIndices.Count>0)
{
var confirmation = MessageBox.Show("Voulez vous vraiment supprimer les stagiaires séléctionnés?", "Suppression", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (confirmation == DialogResult.Yes)
{
for (int i = listView1.SelectedIndices.Count-1; i >= 0; i--)
{
listView1.Items.RemoveAt(listView1.SelectedIndices[i]);
}
}
}
else
MessageBox.Show("aucin stagiaire selectionnes", "erreur", MessageBoxButtons.OK, MessageBoxIcon.Error);
您需要将确认MessageBox
从Show
更改为ShowDialog
。这将使它成为模态并等待结果。
你需要检查"SelectedItems"是否为空