文件名称:ListBox列表项的删除方法-web教程使用
文件大小:967KB
文件格式:PPT
更新时间:2024-05-16 03:19:33
web
ListBox列表项的删除方法 ListBox1.Items.RemoveAt(2);//删除指定索引 ListBox1.Items.Remove(ListBox1.Items[2]);//删除指定索引 ListBox1.Items.Remove("three");//删除内容为three ListBox1.Items.Remove(ListBox1.SelectedItem);//删除选中项 ListBox1.Items.Clear();//清除所有列表项