C# 如何清空listbox里的值

2024年11月16日 04:54
有5个网友回答
网友(1):

使用listBox.Items.Clear()函数来清空listbox里的值,测试代码如下:

        private void button1_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();
        }

效果如下:


MSDN中Clear()函数介绍:

Clear()

从集合中移除所有项。
备注
当从列表移除项时,将丢失有关被删除项的所有信息。 若要从 ListBox 中移除单个项,请使用 Remove 或 RemoveAt 方法。


网友(2):

listBox1.Items.Clear();

网友(3):

SendDlgItemMessage(hwnd,IDC_LST1,LB_RESETCONTENT,0,0);

祝好运!--------------臭即是香!

网友(4):

this.listbox.items.clear();

网友(5):

if (listBox1.Items.Count > 0)
{
listBox1.Items.Clear();
}