在 C# 中清除列表框

Muhammad Maisam Abbas 2023年1月30日 2021年4月29日
  1. 在 C# 中使用 ListBox.Items.Clear() 函数清除 ListBox
  2. 在 C# 中使用 DataSource = null 方法清除列表框
在 C# 中清除列表框

本教程将讨论清除 C# 中列表框所有内容的方法。

在 C# 中使用 ListBox.Items.Clear() 函数清除 ListBox

ListBox.Items.Clear() 函数清除 C# 中列表框中的所有项目。此函数不返回任何内容,并且与已删除元素有关的所有信息都将丢失。下面的代码示例向我们展示了如何使用 C# 中的 ListBox.Items.Clear() 函数清空列表框。

private void emptylistbox(object sender, EventArgs e)
{
    listbox1.Items.Clear();
}

在上面的代码中,我们用 C# 中的 listbox1.Items.Clear() 函数清空了列表框 listbox1。尽管这种方法很好,并且可以与简单的列表框一起使用。但是,如果我们的列表框绑定到数据源,则此方法将不起作用并显示错误。可以很容易地解决此错误,如下一节所示。

在 C# 中使用 DataSource = null 方法清除列表框

如果我们的列表框绑定到数据源,则可以为数据源分配一个 null 值,以清空我们的列表框。但这不是一个很好的方法,因为稍后我们可能需要在代码中使用相同的数据源。最好的解决方案是将等于 nullListBox.DataSource 属性指定为删除数据源,然后使用 ListBox.Items.Clear() 函数清除列表框中的先前项目。下面的代码示例向我们展示了如何在 C# 中使用 ListBox.DataSource 属性清空列表框。

private void emptylistbox(object sender, EventArgs e)
{
    listbox1.DataSource = null;
    listbox1.Items.Clear();
}

在上面的代码中,我们用 C# 中的 listbox1.DataSource = nulllistbox1.Items.Clear() 函数清空了列表框 listbox1

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp GUI