L liuhuione Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-31 #1 如何让三个tlistbox控件中的内容同步显示,即第一个移动时,第二、三个以第一个 itemindex同步
Z zhangkan Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-31 #3 这个也是问题吗?三个LISTBOX可以都用同一个事件,在此事件中作判断. procedure TForm1.ListBox1Click(Sender: TObject); begin if listbox1.ItemIndex>=0 then begin listbox2.ItemIndex:=listbox1.ItemIndex; listbox3.ItemIndex:=listbox1.ItemIndex; end; end;
这个也是问题吗?三个LISTBOX可以都用同一个事件,在此事件中作判断. procedure TForm1.ListBox1Click(Sender: TObject); begin if listbox1.ItemIndex>=0 then begin listbox2.ItemIndex:=listbox1.ItemIndex; listbox3.ItemIndex:=listbox1.ItemIndex; end; end;
H hnlygtjj Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-31 #5 是的,将三个listbox指向同一个事件就是的。