Delphi最大化最小化、窗体变化事件

来源:互联网 发布:php 逐行读取文件内容 编辑:程序博客网 时间:2024/05/22 00:07

private 
   procedure   WMSysCommand(var   Msg:TMessage);message   WM_SYSCOMMAND;

procedure   TForm1.WMSysCommand(var   Msg:   TMessage);
begin
    case   Msg.WParam   of
        SC_MINIMIZE   :   ShowMessage( '最小化 ');
        SC_MAXIMIZE   :   ShowMessage( '最大化 ');
    end;
    inherited;
end;

原创粉丝点击