ListBox的多选

字体大小: 中小 标准 ->行高大小: 标准
一次将多个选择加入另外一个Listbox:

procedure TForm_Department_Staff.Button_AddClick(Sender: TObject);

var

Iitemno,Ino: Integer;

begin

Iitemno:=0;

with ListBox1 do

for Ino:=0 to Items.Count-1 do

begin

if Selected[Ino] then

begin

Iitemno:=Ino;

Break;

end;

end;

with ListBox1 do

begin

ListBox2.Items.Clear;

for Ino:=Iitemno to Iitemno+(ListBox1.SelCount-1) do

begin

ListBox2.Items.Add(Items[Ino]);

end;

end;

end;

此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/68000.html