运行期间创建的Checkbox event handler(50分)

  • 主题发起人 主题发起人 bookworm
  • 开始时间 开始时间
B

bookworm

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样写运行期间创建的Checkbox: array[1..10] of TCheckbox的OnClick Event? Event depends on the index of array.
 
private:
procedure CheckBox***(Sender: TObject);
设置:
CheckBox.Tag := I;
CheckBox.OnClick := CheckBox;
procedure TForm1.CheckBox***(Sender: TObject);
begin
...
case TCheckBox(Sender).Tag of
1:
...
10:
end;
...
end;

 
Very effective. Many thanks.
 
接受答案了.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
后退
顶部