如何将listbox中选中的项删除?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将listbox中选中的项删除?相关的知识,希望对你有一定的参考价值。
参考技术A listBox1.Items.RemoveAt(listBox1.SelectedIndex); 参考技术B 以上所列代码可以删除所有选中的项(MultiSelect为True时)。 参考技术C end;procedure TForm1.Button1Click(Sender: TObject);var i:integer;begin for i:= ListBox1.Items.Count-1 downto 0 do begin if ListBox1.Selected[i] then ListBox1.Items.Delete(i);end; 参考技术D listbox.Items.Delete(listbox.itemindex); 第5个回答 2014-03-04 若何将listbox中选中的项删除?怎样获取checkedListBox 中选中的项的文本
参考技术A string output = string.Empty;for (int i = 0; i < checkedListBox1.CheckedIndices.Count; i++)
output += checkedListBox1.Items[
checkedListBox1.CheckedIndices[i]].ToString() + "\r\n ";
MessageBox.Show(output);本回答被提问者和网友采纳 参考技术B MsgBox(CheckedListBox1.SelectedItem.ToString)
以上是关于如何将listbox中选中的项删除?的主要内容,如果未能解决你的问题,请参考以下文章
使用 ListBox 的项作为源替换 TextBox 中的单词
VB菜鸟提问:VB 如何读取listbox中选中的一行数据至text中?
VB 中如何点一下按钮,让listbox中选中的某一列复制到另外的listbox中,不是vb.net
用vs2010写窗体程序,listbox的多条删除要怎么弄?