tlistbox控件的使用(100分)

  • 主题发起人 主题发起人 liuhuione
  • 开始时间 开始时间
L

liuhuione

Unregistered / Unconfirmed
GUEST, unregistred user!
如何让三个tlistbox控件中的内容同步显示,即第一个移动时,第二、三个以第一个
itemindex同步
 
在每个LISTBOX
中的加相同的事件和相同的代码!
 
这个也是问题吗?三个LISTBOX可以都用同一个事件,在此事件中作判断.
procedure TForm1.ListBox1Click(Sender: TObject);
begin
if listbox1.ItemIndex>=0 then
begin
listbox2.ItemIndex:=listbox1.ItemIndex;
listbox3.ItemIndex:=listbox1.ItemIndex;
end;
end;
 
agree zhangkan
 
是的,将三个listbox指向同一个事件就是的。
 
调同一个事件
 
接受答案了.
 
后退
顶部