delphi 对窗体中的控件进行遍历
在一个窗体上放置若干个按钮、编辑框,写一个方法对窗体中的控件进行遍历,若为按钮,将其Caption设为“按钮”,若为编辑框,将其text设为“编辑框”。...
在一个窗体上放置若干个按钮、编辑框,写一个方法对窗体中的控件进行遍历,若为按钮,将其Caption设为“按钮”,若为编辑框,将其text设为“编辑框”。
展开
展开全部
for i := 0 to Form1.ComponentCount-1 do
begin
if Form1.Components[i] is TButton then
TButton(Form1.Components[i]).Caption := '按钮'
else
if Form1.Components[i] is TEdit then
TEdit(Form1.Components[i]).Text := '编辑框';
end;
begin
if Form1.Components[i] is TButton then
TButton(Form1.Components[i]).Caption := '按钮'
else
if Form1.Components[i] is TEdit then
TEdit(Form1.Components[i]).Text := '编辑框';
end;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询