S
sunsong
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TformMain.IWAppFormCreate(Sender: TObject);
var
aa : TIWButton;
begin
aa := TIWButton.Create(self);
with aa do
begin
top := 100;
left := 100;
Width := 200;
Height := 200;
Caption := 'New Button';
Visible := True;
end;
end;
还是不行
var
aa : TIWButton;
begin
aa := TIWButton.Create(self);
with aa do
begin
top := 100;
left := 100;
Width := 200;
Height := 200;
Caption := 'New Button';
Visible := True;
end;
end;
还是不行