哪儿有遍历VCL组件库的例子?(100分)

  • 主题发起人 主题发起人 Passion
  • 开始时间 开始时间
P

Passion

Unregistered / Unconfirmed
GUEST, unregistred user!
我需要RegisterClass许多现成的VCL类,
总不能在代码中写这么多类名出来吧?
记得以前有一个遍历VCL组件库的程序,不知道哪儿有,
或者有什么别的方法,请指教指教。
 
提前,高手指教?
 
还提。。。
 
试试toolintf单元

TIToolServices
{ Component Library interface }
function GetModuleCount: Integer; virtual; stdcall; abstract;
function GetModuleName(Index: Integer): string; virtual; stdcall; abstract;
function GetComponentCount(ModIndex: Integer): Integer; virtual; stdcall; abstract;
function GetComponentName(ModIndex, CompIndex: Integer): string; virtual; stdcall; abstract;
 
to zhongs:
看过了这个单元,但不知道怎么用,函数都是abstract的。
能详细说说吗?谢了。
 
procedure TForm1.SetActiveLanguage(LanguageName:string);
const
Translations='Translations';
Messages='Messages';
var
frmComponent:TComponent;
i:Integer;
begin
with TInifile.Create(ExtractFilePath(ParamStr(0))+LanguageName+'.ini') do
begin
for i:=0 to ComponentCount-1 do { 遍历Form组件 }
begin
frmComponent:=Components;
if frmComponent is TLabel then { 如果组件为TLabel型则当作TLabel处理,以下同 }
begin
(frmComponent as TLabel).Caption:=
ReadString(Translations,frmComponent.Name+'.Caption',(frmComponent as TLabel).Caption);
end;
if frmComponent is TCheckBox then
begin
(frmComponent as TCheckBox).Caption:=
ReadString(Translations,frmComponent.Name+'.Caption',(frmComponent as TCheckBox).Caption);
end;
if frmComponent is TButton then
begin
(frmComponent as TButton).Caption:=
ReadString(Translations,frmComponent.Name+'.Caption',(frmComponent as TButton).Caption);
(frmComponent as TButton).Hint:=
ReadString(Translations,frmComponent.Name+'.Hint',(frmComponent as TButton).Hint);
end;
if frmComponent is TMenuItem then
begin
(frmComponent as TMenuItem).Caption:=
ReadString(Translations,frmComponent.Name+'.Caption',(frmComponent as TMenuItem).Caption);
end;
end;
M1:=ReadString(Messages,'M1',M1);
end;
end;
在这个过程中,我们遍历了Form中的所有组件,根据他们的类别和组件名动态的从ini配置文件中读出应该显示的语言文字。
------------------------------------------------------------------------------------------------------------
 
to amadman:
这个遍历所有已经创建的对象的程序不是我需要的。
我需要的是获得所有类名。
 
我也在关注此问题!
 
多人接受答案了,不过问题仍然没解决,似乎不可能不写出所有类名而实现类遍历的。
 

Similar threads

回复
0
查看
1K
不得闲
回复
0
查看
863
不得闲
D
回复
0
查看
767
DelphiTeacher的专栏
D
D
回复
0
查看
809
DelphiTeacher的专栏
D
后退
顶部