Delphi CreateMessageDialog


本文整理自网络,侵删。

 CreateMessageDialog


unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

var
MsgInfo, MsgErr: TForm;

procedure TForm1.FormCreate(Sender: TObject);
begin
MsgErr := CreateMessageDialog('错误', mtError, [mbOK]);
MsgInfo := CreateMessageDialog('提示', mtInformation, [mbYes, mbNo], mbYes);
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
MsgErr.ShowModal;
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
MsgInfo.ShowModal;
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
case MsgInfo.ShowModal of
IDYES: Text := 'Yes';
IDNO : Text := 'No';
else
Text := 'Form1';
end;
end;

end.

相关阅读 >>

Delphi 上次访问该文件的时间

Delphi xe 取得 app 自己的版本号 (狠跨 4 个平台)

Delphi trunc转换函数

Delphi生成的webservice appdebug的程序,编译时出错

Delphi xe10 百度车牌识别

Delphi调用http接口上传文件

Delphi 官方提供的六十多个firedac例子

Delphi - 利用dll编程控制摄像头实现拍照、录制视频

Delphi xe取得硬盘序列号代码 复制代码

Delphi判断线程是否释放

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...