zoukankan
html css js c++ java
古老话题:如何实现应用程序中的”回车”成TAB?
如何实现应用程序中的”回车”成TAB?
其实方法有很多种,但哪一种才是最简洁、最灵活的呢?
下面的方法就是博主最常使用的方法:
一、在你的数据模块中,添加如下代码:
interface 。。。。。。 type TMessageHandler = class //使得回车消息转换成Tab消息 class procedure AppMessage(var Msg:TMsg;var Handled:Boolean); end; implementation class procedure TMessageHandler.AppMessage(var Msg: TMsg; var Handled: Boolean); begin if Msg.message=WM_KEYDOWN then if (Msg.wParam=VK_RETURN ) and ( (Screen.ActiveForm.ActiveControl is TEdit) or (Screen.ActiveForm.ActiveControl is TComboBox) or (Screen.ActiveForm.ActiveControl is TCheckBox) or (Screen.ActiveForm.ActiveControl is TRadioButton) //可以添加需要的控件 ) then begin Msg.wParam:=VK_TAB; end else if (Msg.wParam=VK_RETURN) and ( (Screen.ActiveForm.ActiveControl is TDBGrid) ) then begin with Screen.ActiveForm.ActiveControl do begin if Selectedindex<(FieldCount-1) then Selectedindex:=Selectedindex+1{ 移动到下一字段} else Selectedindex:=0; end; end; end;
二、为了使得整个应用程序都能够实现主要的功能,在主窗体的OnCreate事件中添加如下代码:
procedure TfmMain.FormCreate(Sender: TObject); begin Application.OnMessage:=TMessageHandler.AppMessage; end;
到此为止,你的应用程序已经实现了这个Enter->Tab的转换.
谢祥选【小宇飞刀(xieyunc)】
查看全文
相关阅读:
滚轮事件
键盘事件
运动(学习)
事件(没有尽头的待完善)
js 盒子模型(没写完)
Number 数字相关的方法, 强制 、隐式类型转换 、进制之间转换
操作DOM 和 节点
DOM
Object 的一些静态方法 、 for-in 循环、Object.keys() 、Object.values()、Object.entries()
删除字段
原文地址:https://www.cnblogs.com/xieyunc/p/9126611.html
最新文章
restful设计
Django入门4: ORM 数据库操作
Django入门3:视图views
Django入门2:路由系统
python 的特殊方法 __str__和__repr__
Django入门1
WEB框架
前端开发框架
JS 正则
登陆注册验证
热门文章
jQuery
Document
Document
Document
Document
Document
Document
Document
Document
数组的解构赋值(未完成)
Copyright © 2011-2022 走看看