首页 / DELPHI / delphi 快捷键用法
delphi 快捷键用法
内容导读
互联网集市收集整理的这篇技术教程文章主要介绍了delphi 快捷键用法,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含774字,纯文字阅读大概需要2分钟。
内容图文

1. 窗体上全局 快捷键,首先设置keyprivew 属性为true.
procedure TFMzcfLr.FormKeyDown(Sender : TObject; var Key : Word; Shift : TShiftState); begin if Key = 13 then //当按下回车时 begin if ActiveControl is TStringGrid then Exit; if ActiveControl is TDBGrid then Exit; if ActiveControl = EdtJbJma then Exit; if ActiveControl = EdtNling then Exit; Key := 0; //吃掉回车键 Perform(WM_NEXTDLGCTL, 0, 0); //把光标定位到下个控件 。 end; end;
具体这个:http://blog.sina.com.cn/s/blog_5c52ae1b0100lnwq.html
2. 过滤键值。
procedure TFMzcfLr.StringGrid1KeyPress(Sender : TObject; var Key : Char); begin if StringGrid1.Col in [4] then if not (Key in [‘0‘..‘9‘, #8, #13]) then Key := #0; if StringGrid1.Col in [8] then if not (Key in [‘0‘..‘9‘, ‘.‘, #8, #13]) then Key := #0; end;
原文:http://www.cnblogs.com/cnby/p/3995413.html
内容总结
以上是互联网集市为您收集整理的delphi 快捷键用法全部内容,希望文章能够帮你解决delphi 快捷键用法所遇到的程序开发问题。 如果觉得互联网集市技术教程内容还不错,欢迎将互联网集市网站推荐给程序员好友。
内容备注
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 gblab@vip.qq.com 举报,一经查实,本站将立刻删除。
内容手机端
扫描二维码推送至手机访问。