S
strongburn
Unregistered / Unconfirmed
GUEST, unregistred user!
我打算对在一个循环中对窗体中所有具有Caption属性的控件的Caption进行操作.
for i:=0 to componentcount-1 do
但需要一个类作类型转换.
(components as 转换类).caption:='内容';
窗体中的控件类型较多
我的转换类写法是
TformatClass=class(component)
private
fcaption:string;
public
published
property caption:string read fcaption write fcaption;
end;
类型转换时报错,难道AS只能用于祖先类吗?我要想对每个控件的Caption操作怎么实现?
希望各位帮忙?
for i:=0 to componentcount-1 do
但需要一个类作类型转换.
(components as 转换类).caption:='内容';
窗体中的控件类型较多
我的转换类写法是
TformatClass=class(component)
private
fcaption:string;
public
published
property caption:string read fcaption write fcaption;
end;
类型转换时报错,难道AS只能用于祖先类吗?我要想对每个控件的Caption操作怎么实现?
希望各位帮忙?