TListBox的多选(50分)

  • 主题发起人 主题发起人 morning75
  • 开始时间 开始时间
M

morning75

Unregistered / Unconfirmed
GUEST, unregistred user!
如何将ListBox中选中的多行取出
 
property Selected[Index: Integer]: Boolean;
可以判断每一个项目是不是被选中!
 
首先设置TListBox.MultiSelect = True,最好把ExtendedSelect也设置成True
然后通过Selected[Index]访问每一个数据项是否被选中
 
delphi自己就有例子。
 
for Index:=0 to ListBox1.Items.Count-1 do
if ListBox1.Selected[Index] then

可以了!
 
多人接受答案了。
 
后退
顶部