• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

DELPHI方面输入EDIT

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

procedure TForm1.FormCreate(Sender: TObject);

var

 i:integer;

begin

 for i:=0 to ComponentCount-1 do

     if Components[i] is TEdit then

       (Components[i] as TEdit).OnKeyPress:=EditKeyPress;

end;

 

procedure TForm1.EditKeyPress(Sender: TObject; var Key: Char);

var

 Index:integer;

begin

 if key=#13 then

 begin

    if ActiveControl.ComponentIndex < ComponentCount-1 then

      Index:=ActiveControl.ComponentIndex+1

    else

      Index:=ComponentCount-1;

    while (not (Components[Index] is TEdit)) and (Index < ComponentCount) do

    begin

      Index:=Index+1;

    end;

    (Components[Index] as TEdit).SetFocus;

    (Components[Index] as TEdit).SelectAll;

 end;

end;

这里我们利用了窗体的ActiveControl属性,它代表当前获得焦点的输入文本框;ComponentIndex属性代表了窗体控件放置的次序,也作为本方法中输入框获得焦点的顺序的参考。这个例子所使用方法的难点在于窗体上可以获得焦点的控件也许不止文本框,还有按钮、列表框、复选框等等,如何区分它们需要用到Delphi的运行时信息(RTTI)。另外,该方法有一个局限就是获得焦点的顺序和设计时控件放置的顺序相关。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
本学期微分方程数值解课程总结(matlab代码)发布时间:2022-07-18
下一篇:
Matlab最新的官方文档中文翻译发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap