Delphi中怎么用代码设置listbox 选中项
2个回答
展开全部
procedure TForm1.ListBox1Click(Sender: TObject);
var L1:string;
L2:integer;
begin
L1:=listbox1.Items.Strings[ListBox1.ItemIndex];
L2:=ListBox2.Items.IndexOf(L1);
ListBox2.Selected[L2]:=True;
end;
上面代码有个要求,就是ListBox1和ListBox12里面的字符要相同,才能对应选上。如果你的程序中两个ListBox里面的字符不一样,那上面代码仅供参考用。
var L1:string;
L2:integer;
begin
L1:=listbox1.Items.Strings[ListBox1.ItemIndex];
L2:=ListBox2.Items.IndexOf(L1);
ListBox2.Selected[L2]:=True;
end;
上面代码有个要求,就是ListBox1和ListBox12里面的字符要相同,才能对应选上。如果你的程序中两个ListBox里面的字符不一样,那上面代码仅供参考用。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询