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 ado 连接mssql数据库

Delphi idhttp实现get方法下载文件,断点续传

Delphi获取网卡mac地址多个方法

Delphi winsock 获取计算机名和ip

Delphi里实现彩色图片转为黑白图像的功能

Delphi tstringlist stringlist的特殊用法

Delphi代码直接注入别的进程

Delphi webbrowser控件属性

Delphi共享软件防破解的实用招法

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



打赏

取消

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

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

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

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

评论

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