unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ShellAPI, AppEvnts, StdCtrls, Menus;
const WM_NID = WM_User + 1000;
type
TForm1 = class(TForm)
PopupMenu1: TPopupMenu;
N1: TMenuItem;
N2: TMenuItem;
Label1: TLabel;
pm1: TPopupMenu;
mniN3: TMenuItem;
mniN4: TMenuItem;
procedure FormDestroy(Sender: TObject);
procedure N1Click(Sender: TObject);
procedure N2Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure mniN3Click(Sender: TObject);
procedure mniN4Click(Sender: TObject);
private
{ Private declarations }
procedure SysCommand(var SysMsg: TMessage); message WM_SYSCOMMAND;
procedure WMNID(var msg:TMessage); message WM_NID;
public
{ Public declarations }
end;
var
Form1: TForm1;
NotifyIcon: TNotifyIconData;
implementation
{$R *.dfm}
{ TForm1 }
procedure TForm1.SysCommand(var SysMsg: TMessage);
begin
case SysMsg.WParam of
SC_MINIMIZE: // 當最小化時
begin
SetWindowPos(Application.Handle, HWND_NOTOPMOST, 0, 0, 0, 0,
SWP_HIDEWINDOW);
Hide; // 在任務欄隱藏程序
// 在托盤區顯示圖標
with NotifyIcon do
begin
cbSize := SizeOf(TNotifyIconData);
Wnd := Handle;
uID := 1;
uFlags := NIF_ICON or NIF_MESSAGE or NIF_TIP;
uCallBackMessage := WM_NID;
hIcon := Application.Icon.Handle;
szTip := '托盤程序';
end;
Shell_NotifyIcon(NIM_ADD, @NotifyIcon); // 在托盤區顯示圖標
end;
else
inherited;
end;
end;
procedure TForm1.WMNID(var msg: TMessage);
var
mousepos: TPoint;
begin
GetCursorPos(mousepos); //獲取鼠標位置
case msg.LParam of
WM_LBUTTONUP: // 在托盤區點擊左鍵後
begin
Form1.Visible := not Form1.Visible; // 顯示主窗體與否
Shell_NotifyIcon(NIM_DELETE, @NotifyIcon); // 顯示主窗體後刪除托盤區的圖標
SetWindowPos(Application.Handle, HWND_TOP, 0, 0, 0, 0, SWP_SHOWWINDOW); //
在任務欄顯示程序
end;
WM_RBUTTONUP: PopupMenu1.Popup(mousepos.X, mousepos.Y); // 彈出菜單
end;
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
Shell_NotifyIcon(NIM_DELETE, @NotifyIcon); // 刪除托盤圖標
end;
procedure TForm1.N1Click(Sender: TObject);
begin
Form1.Close;
end;
procedure TForm1.N2Click(Sender: TObject);
begin
Form1.Visible := true; // 顯示窗體
SetWindowPos(Application.Handle, HWND_TOP, 0, 0, 0, 0, SWP_SHOWWINDOW);
Shell_NotifyIcon(NIM_DELETE, @NotifyIcon); // 刪除托盤圖標
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
AnimateWindow(Handle,1000,AW_CENTER);//窗口由小變大
end;
procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
AnimateWindow (Handle, 400, AW_HIDE or AW_BLEND);//窗口漸漸消失
end;
procedure TForm1.mniN3Click(Sender: TObject);
begin
Form1.Close;
end;
procedure TForm1.mniN4Click(Sender: TObject);
begin
shellexecute(handle,'open','http://www.aheasy.cn',nil,nil,SW_show);
end;
end.