使用listBox.Items.Clear()函数来清空listbox里的值,测试代码如下:
private void button1_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
}
效果如下:
MSDN中Clear()函数介绍:
Clear()
从集合中移除所有项。
备注
当从列表移除项时,将丢失有关被删除项的所有信息。 若要从 ListBox 中移除单个项,请使用 Remove 或 RemoveAt 方法。
listBox1.Items.Clear();
SendDlgItemMessage(hwnd,IDC_LST1,LB_RESETCONTENT,0,0);
祝好运!--------------臭即是香!
this.listbox.items.clear();
if (listBox1.Items.Count > 0)
{
listBox1.Items.Clear();
}