请问各位大侠,如何用delphi 编写新组件??最好能给一个hello word ~(100分)

  • 主题发起人 主题发起人 d村长
  • 开始时间 开始时间
D

d村长

Unregistered / Unconfirmed
GUEST, unregistred user!
100分奉上,闲少可以再加~!!
 
问题太大了,先看看书吧,遇到什么不懂的再问
 
在component菜单new conponent下,选择继承Tpanel,取名Tmycompanent
在原来的代码里面修改,添加一下内容

type
Tmycompanent = class(Tpanel)

public
constructor Create(AOwner: TComponent); override;
end;
implementation


constructor Ttabshape.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
caption :='hello world!';
end;


最后,编译,打包到某一个dpk中
你就可以在面板里面看到了。
 
楼上这位兄台这么实在
 
去翻一下书再来问吧!
不然你的 Dfw$ 过不两天就没了!
 
很别致的Hello world啊!
 
新建个文件把TCustomButton代码拷进去编译。
再把更高级的拷进去不就会了吗给你Delphi
就是不会用可惜了。
 

Similar threads

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