Delphi中判断窗体最大化和最小化事件


本文整理自网络,侵删。

 

unit Unit1;

interface

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

type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
procedure Button2Click(Sender: TObject);
private
private
procedure WMsyscommand(var msg : Twmsyscommand);message wm_syscommand;
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure Tform1.WMsyscommand(var msg : Twmsyscommand);
begin
if msg.CmdType = SC_MAXIMIZE then
showmessage('现在最大化')
else if msg.CmdType = SC_MINIMIZE then
showmessage('现在最小化');
inherited;
end;

end.

相关阅读 >>

Delphi stringtobase64、base64tostring两个函数

Delphi 生成二维码图形

Delphi httpresponsestrings

Delphi 获取任意月份总共有多少天数

Delphi屏蔽alt+tab键代码

Delphi xe android下让tmemo不自动弹出键盘

Delphi中exit,abort,break,continue 的区别

Delphi xe8 为image设置渐变效果

Delphi socket connect timeout 套字节链接超时设置

Delphi 简单字符串截取函数

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



打赏

取消

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

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

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

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

评论

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