A
awfigsk
Unregistered / Unconfirmed
GUEST, unregistred user!
例如:将VCL中的ListBox控件转换成ActiveX控件,在ActiveX控件生成后,实现单元和类型库单元为何都有二个相同的类?代码如下:
ListBoxImpl.pas
===============
unit ListBoxXImpl
...
type
TListboxX=class(TActiveXControl,TListbox)
......
end.
-----------------------------------------------
ListBoxXControl1_TLB.pas
unit ListBoxXControl1_TLB
......
type
TMyListBoxX = class(TOleControl)
...
end.
这二个类定义和实现方式都不同,但为何这样定义?
还请大侠指点!谢谢!
ListBoxImpl.pas
===============
unit ListBoxXImpl
...
type
TListboxX=class(TActiveXControl,TListbox)
......
end.
-----------------------------------------------
ListBoxXControl1_TLB.pas
unit ListBoxXControl1_TLB
......
type
TMyListBoxX = class(TOleControl)
...
end.
这二个类定义和实现方式都不同,但为何这样定义?
还请大侠指点!谢谢!