Q
QQ我心飞翔
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.FormCreate(Sender: TObject);
var tbut:tbutton;
begin
tbut:=tbutton.create(self);
tbut.parent:=self;
end;
此时我在form上创建了一个button,我想为此button添加单击事件,该怎么做?button是程序运行时动态生成的,
var tbut:tbutton;
begin
tbut:=tbutton.create(self);
tbut.parent:=self;
end;
此时我在form上创建了一个button,我想为此button添加单击事件,该怎么做?button是程序运行时动态生成的,