procedure TForm1.FormCreate(Sender: TObject);
begin
ListBox1.Items.Add('item1');
ListBox1.Items.Add('item2');
ListBox1.Items.Add('item3');
end;
procedure TForm1.ListBox1Click(Sender: TObject);
begin
ShowMessage(ListBox1.Items[ListBox1.ItemIndex]);
end;
ListBox1.Items[ListBox1.ItemIndex]
不过要判断ItemIndex是否为-1,-1的时候为没有选中任何项,0为第一项
ListBox1.Items.Strings[ListBox1.ItemIndex] 获取选中行的内容
listbox1.Items[listbox1.ItemIndex]
lst1.Items[lst1.ItemIndex]