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中formatdatetime的用法

Delphi 比较完整的listview1用法

Delphi读取和写入utf-8编码格式的文件

Delphi检测网络连接状态

Delphi 文件路径获取文件名不带扩展名

Delphi编程之win10桌面图标设置

Delphi 利用createservice写与桌面交互的win32服务

Delphi 提升进程令牌

Delphi删除只读文件

Delphi 中判断windows系统是否是64位系统

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



打赏

取消

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

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

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

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

评论

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