码迷,mamicode.com
首页 > Windows程序 > 详细

delphi trayIcon控件,如何实现窗口最小化的时候到系统托盘

时间:2020-03-31 09:15:31      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:wms   span   and   ini   get   www   col   nim   type   

type
  TForm1 = class(TForm)
  private
    procedure WMSysCommand(var Msg: TWMSysCommand); message WM_SYSCOMMAND;
  end;
 
  ......
   
procedure TForm1.WMSysCommand(var Msg: TWMSysCommand);
begin
  inherited;
  if Msg.CmdType = SC_MINIMIZE then // 窗口收到最小化消息
  begin
    Application.Minimize; // 最小化程序
    ShowWindow(Application.Handle, SW_HIDE); // 隐藏任务栏图标
  end;
end;

记得在TrayIcon的单击或双击事件中还原窗口,否则你就看不见程序了,只能用任务管理器结束了。

 

响应Application的消息事件,如果是最小化消息就显示图标、隐藏主窗口和Application。

delphi trayIcon控件,如何实现窗口最小化的时候到系统托盘

标签:wms   span   and   ini   get   www   col   nim   type   

原文地址:https://www.cnblogs.com/jijm123/p/12602683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!