delphi中有没有控件对应的简单写法(20)

  • 主题发起人 主题发起人 wnsr
  • 开始时间 开始时间
W

wnsr

Unregistered / Unconfirmed
GUEST, unregistred user!
如果edit1对应checkbox1,edit2对应checkbox2,edit3对应checkbox3.....就是假如某个edit取值为a的时候,它对应的checkbox为true,否则为false有没有简单的写法,不用一个一个的写
 
设置对应的edit与checkbox的tag相同for i:=0 to self.components.count-1 dobeginif component is tedit thenbeginmyEdit:=component as tedit;for j:=0 to self.components.count-1 dobeginif (component is tcheckbox)and((component as tcheckbox).tag=myEdit.tag) thenbegin((component as tcheckbox).check:=myEdit.text='a';end;end;end;end;
 
后退
顶部