delphi 使用 InputBox、InputQuery 的启发
使用 InputBox、InputQuery 的启发
看了 InputBox、InputQuery 函数实现的源码, 有些收获与心得...
--------------------------------------------------------------------------------
通过 InputBox 可获取用户输入的字符串:
--------------------------------------------------------------------------------
procedure TForm1.Button1Click(Sender: TObject);
var
str: string;
begin
str := InputBox('输入窗口标题', '输入提示', '默认输入内容');
ShowMessage(str); //显示输入的内容
end;
--------------------------------------------------------------------------------
InputBox 是调用了 InputQuery, InputQuery 是通过一个 var 参数获取新字串:
--------------------------------------------------------------------------------
procedure TForm1.Button2Click(Sender: TObject);
var
str: string;
begin
InputQuery('输入窗口标题', '输入提示', str);
ShowMessage(str); //显示输入的内容
end;
--------------------------------------------------------------------------------
InputQuery 可返回一个 Boolean 值, 可判断用户是确认还是取消, 挺有用的:
--------------------------------------------------------------------------------
procedure TForm1.Button3Click(Sender: TObject);
var
str: string;
begin
str := '默认输入内容';
if InputQuery('输入窗口标题', '输入提示', str) then
ShowMessage(str); //如果点击了 ok 按钮将显示输入的内容
end;
--------------------------------------------------------------------------------
我经常用到需要用户输入或选择的窗口, 一般都是 Show 一个提前设计好的窗口; 这会浪费资源, InputQuery 的窗口应该是动态建立的.
但如果动态建立还是有诸多麻烦, 譬如给按钮添加事件...
但查看 InputQuery 的源码, 只有区区几十行, 果然是动态建立的窗口, 但并没有发现 "事件" 相关的代码!
再看下去, 发现这和 "模式窗口" 有关, 假如不是用 ShowModal 启动窗口的话, 恐怕 "事件" 代码是非写不可.
那 "模式窗口" 中的 "按钮" 和 "模式窗口" 又是如何关联的呢?
还是做起来看吧:
--------------------------------------------------------------------------------
//主体代码就这些:
procedure TForm1.Button1Click(Sender: TObject);
var
frm: TForm;
begin
frm := TForm.Create(Application);
frm.ShowModal;
frm.Free;
end;
--------------------------------------------------------------------------------
同时动态添加进两个按钮:
--------------------------------------------------------------------------------
procedure TForm1.Button1Click(Sender: TObject);
var
frm: TForm;
begin
frm := TForm.Create(Application);
with TButton.Create(frm) do begin
Caption := '确认';
Parent := frm;
Left := 100; top := 40;
end;
with TButton.Create(frm) do begin
Caption := '取消';
Parent := frm;
Left := 100; top := 80;
end;
frm.ShowModal;
frm.Free;
end;
--------------------------------------------------------------------------------
但上面代码写出的按钮并没有任何作用, 其实只要设置一下按钮的 ModalResult 属性就可以了:
--------------------------------------------------------------------------------
procedure TForm1.Button1Click(Sender: TObject);
var
frm: TForm;
begin
frm := TForm.Create(Application);
with TButton.Create(frm) do begin
Caption := '确认';
ModalResult := mrOk; {1}
Parent := frm;
Left := 100; top := 40;
end;
with TButton.Create(frm) do begin
Caption := '取消';
ModalResult := mrCancel; {2}
Parent := frm;
Left := 100; top := 80;
end;
frm.ShowModal;
frm.Free;
end;
--------------------------------------------------------------------------------
按钮的 ModalResult 属性就是一个整数, 窗体也有相同的属性; 点击按钮时它会传递给所属窗体的同名(ModalResult)属性; 这个属性的默认值是 0, 非 0 时模式窗口即刻关闭.
另外: ShowModal 是个函数, 调用时会返回窗口的 ModalResult 值.
上面几句话挺重要, 我也都从相关源码中核实了.
--------------------------------------------------------------------------------
procedure TForm1.Button1Click(Sender: TObject);
var
frm: TForm;
begin
frm := TForm.Create(Application);
with TButton.Create(frm) do begin
Caption := '确认';
ModalResult := mrOk; {1}
Parent := frm;
Left := 100; top := 40;
end;
with TButton.Create(frm) do begin
Caption := '取消';
ModalResult := mrCancel; {2}
Parent := frm;
Left := 100; top := 80;
end;
if frm.ShowModal = mrOk then
ShowMessage('确认了')
else
ShowMessage('没有确认');
frm.Free;
end;
--------------------------------------------------------------------------------
完善一下, 并添加两个文本框准备接受信息:
--------------------------------------------------------------------------------
procedure TForm1.Button1Click(Sender: TObject);
var
frm: TForm;
begin
frm := TForm.Create(Application);
frm.Position := poScreenCenter;
frm.ClientWidth := 270;
frm.ClientHeight := 100;
frm.Caption := '输入对话框';
with TEdit.Create(frm) do begin
Parent := frm;
Name := 'Edit1';
SetBounds(10, 10, 100, 20);
end;
with TEdit.Create(frm) do begin
Parent := frm;
Name := 'Edit2';
SetBounds(150, 10, 100, 20);
end;
with TButton.Create(frm) do begin
Caption := '确认';
ModalResult := mrOk;
Default := True;
Parent := frm;
SetBounds(100, 40, 75, 25);
end;
with TButton.Create(frm) do begin
Caption := '取消';
ModalResult := mrCancel;
Cancel := True;
Parent := frm;
SetBounds(100, 70, 75, 25);
end;
if frm.ShowModal = mrOk then
begin
ShowMessage('确认了');
end;
frm.Free;
end;
--------------------------------------------------------------------------------
如何传回用户输入的信息呢? 我觉得用类似 InputQuery 函数中的 var 参数接受信息就挺好的, 这种方式用于接受复杂的信息也很方便; 不过要先把上面的代码写到一个函数里:
--------------------------------------------------------------------------------
{函数}
function GetInfo(var str1,str2: string): Boolean;
var
frm: TForm;
MyEdit1, MyEdit2: TEdit;
begin
Result := False;
frm := TForm.Create(Application);
frm.Position := poScreenCenter;
frm.ClientWidth := 270;
frm.ClientHeight := 100;
frm.Caption := '输入对话框';
MyEdit1 := TEdit.Create(frm);
with MyEdit1 do begin
Parent := frm;
Text := str1;
SetBounds(10, 10, 100, 20);
end;
MyEdit2 := TEdit.Create(frm);
with MyEdit2 do begin
Parent := frm;
Text := str2;
SetBounds(150, 10, 100, 20);
end;
with TButton.Create(frm) do begin
Caption := '确认';
ModalResult := mrOk;
Default := True;
Parent := frm;
SetBounds(100, 40, 75, 25);
end;
with TButton.Create(frm) do begin
Caption := '取消';
ModalResult := mrCancel;
Cancel := True;
Parent := frm;
SetBounds(100, 70, 75, 25);
end;
if frm.ShowModal = mrOk then
begin
str1 := MyEdit1.Text;
str2 := MyEdit2.Text;
Result := True;
end;
frm.Free;
end;
{调用测试}
procedure TForm1.Button1Click(Sender: TObject);
var
s1,s2: string;
begin
s1 := 'aaa';
s2 := 'bbb';
if GetInfo(s1, s2) then ShowMessageFmt('%s - %s', [s1, s2]);
end;
--------------------------------------------------------------------------------
完成了, 但这远远没有 InputQuery 的源码精彩; 不过从今往后再用到一个采集信息的对话框时, 我会尽量用这样一个函数来完成; 这就是我阅读 InputQuery 源码的收获.
delphi 使用 InputBox、InputQuery 的启发的更多相关文章
- Delphi Inputbox,InputQuery用法
Delphi :InputQuery,InputBox用法及区别 function InputQuery(const ACaption, APrompt: string; var Value: str ...
- Delphi中Inputbox 和Inputquery 函数的使用
原文转自:http://blog.csdn.net/zengcong2013/article/details/18355959 inputbox的返回值是,你在输入框中输入的文字.而inputquer ...
- delphi控件属性大全-详解-简介
http://blog.csdn.net/u011096030/article/details/18716713 button 组件: CAPTION 属性 :用于在按钮上显示文本内容 Cancel ...
- delphi中的inpubox,如何能控制它的位置? 10
https://zhidao.baidu.com/question/153270855.html delphi中的inpubox,如何能控制它的位置? 10 RT ! 前辈!最好你就把那代码都拿出来吧 ...
- [原创] Delphi InputBox、InputQuery函数
Delphi InputBox.InputQuery函数 两个函数都是弹框提示输入信息 function InputQuery(const ACaption, APrompt: string; var ...
- 【转】Delphi的消息对话框
Delphi的消息对话框 输入输出inputBox()函数MessageBox()ShowMessage 对话框是Windows操作系统中程序与用户沟通的一种常见的交互方式,对话框可以向用户提供当前程 ...
- delphi弹出信息框大全(转载)
1. 警告信息框 MessageBox(Handle,'警告信息框','警告信息框',MB_ICONWARNING); 2.疑问信息框 MessageBox(Handle,'疑问信息框','疑问信息框 ...
- Delphi完成的断点续传例子 转
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms ...
- Delphi的Socket编程步骤(repulish)
转贴自:http://topic.csdn.net/t/20010727/16/212155.html ClientSocket 和ServerSocket几个重要的属性: 1.client和se ...
随机推荐
- 制作自己的win7系统
每次安装完纯净版的系统,然后是漫长的打补丁,装驱动,装软件.不妨制作一个自己的系统光盘(也就是GHOST系统),再要重装系统时,直接用这个系统光盘,一键安装,方便省时. 制作GHOST系统,就是将本地 ...
- javaSE javaEE javaME的区别、有什么不同?
http://zhidao.baidu.com/link?url=oFEPOmW8BnQ0M0w0krS9DyMA5UCUufgHJWV45r9UQZ-0vp_IOx-Yl-VV0hZQ-vHXGYo ...
- redis连接报错:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to...
连接redis报错: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persis ...
- vue-过滤器(filter)
1.全局过滤器(项目中所有的vue文件都可以使用) 1.1 直接注册全局过滤器 在main.js中注册: 在项目中使用; 前面的为时间,作为filter过滤器的第一个参数. 1.2 所有过滤器写在一 ...
- 边界安全 - CDN/DMZ/网络协议
CDN 工具 - LuManager CDN DMZ 网络协议 - DNS Win7下搭建DNS服务器 - BIND 根域 顶级域(即相关国家域名管理机构的数据库,如中国的CNNIC) com n ...
- 企业SRC整理
0.SRCs|安全应急响应中心 - 0xsafe 1.腾讯安全应急响应中心(TSRC) 2.360安全应急响应中心 3.京东安全应急响应中心(JSRC) 4.平安集团安全应急响应中心(PSRC) 5. ...
- 关于VMware中的几个网络模式
直接参考别人的: 写的已经很细致了: http://blog.csdn.net/yaoyaowugui/article/details/7422388 关键是看别人的几张图
- fastJson + lombok + 属性名命名 踩坑点
JavaBean属性名要求:前两个字母要么都大写,要么都小写 package com.jdyh.worker.project.controller; import com.alibaba.fastjs ...
- 在Eclipse的kepler中执行OSGIproject出错的解决方式
版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/canlets/article/details/29620301 今天学习OSGI的过程中依照书上所述 ...
- Solr的学习使用之(二)schema.xml等配置文件的解析
上一篇文章已经讲解了如何部署Solr,部署是部署完了,可是总觉得心里空空的,没底,里面有N多配置文件,比如schema.xml.solrConfig.xml.solr.xml and so on……都 ...