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动态分配指针长度

Delphi中用idhttp获取json数据乱码问题

Delphi fmx用timage显示不同格式的图片

Delphi comparestr 函数

Delphi 关闭android安卓程序

Delphi中的strpas功能

Delphi webbrowser设置自己定义user-agent

Delphi一个综合实用的单元

Delphi禁用,启用网卡

Delphi 10 seattle中的画布上绘制字符

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



打赏

取消

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

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

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

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

评论

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