下拉框日常中用的比较多,主要记住调用下拉框选项的方法
procedure TForm1.Button1Click(Sender: TObject); begin Form1.Caption:= ComboBox1.Items[ComboBox1.ItemIndex];//这里的用法和ListBox是一样的 end;