Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- SDK
- MFC
- dll
- 소니
- 초보
- PostgreSQL
- 데이터베이스
- MySQL
- VB.NET
- winsock
- SQL
- c#
- vb
- 기초
- 파라미터
- 파이어버드
- Visual Studio 2005
- Delphi
- 셋업
- 시리얼 통신
- 문자열
- Visual Basic
- 설치
- 입문
- 인스톨
- 예제
- xml
- Firebird
- WIN32 SDK
- 델파이
Archives
- Today
- Total
프로그래밍 노트
델파이 : System Tray에 Icon 넣기 본문
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ShellApi, Menus;
const
WM_NOTIFYICON = WM_USER + 333;
type
TForm1 = class(TForm)
PopMenu: TPopupMenu;
Show1: TMenuItem;
EXit1: TMenuItem;
procedure EXit1Click(Sender: TObject);
procedure Show1Click(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
NotifyIcnData : TNotifyIconData;
hMainIcon : HICON;
procedure ClickTrayIcon(var msg: TMessage); message WM_NOTIFYICON;
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
// System Tray에 Icon의 Event 수신
procedure TForm1.ClickTrayIcon(var msg: TMessage);
var
pt: TPoint;
begin
case msg.lparam of
WM_LBUTTONDBLCLK : Show;
WM_RBUTTONDOWN :
begin
GetCursorPos(pt);
PopMenu.Popup(pt.x, pt.y);
end;
end;
end;
procedure TForm1.EXit1Click(Sender: TObject);
begin
Application.Terminate;
end;
// Form Close 했을 때
procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := caNone;
Hide; // Form 숨기기
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
// System Tray에 Icon 표시
hMainIcon := LoadIcon(MainInstance, 'MAINICON');
Shell_NotifyIcon(NIM_DELETE, @NotifyIcnData);
with NotifyIcnData do
begin
cbSize := sizeof(TNotifyIconData);
Wnd := handle;
uID := 11111;
uFlags := NIF_MESSAGE or NIF_ICON or NIF_TIP;
uCallbackMessage := WM_NOTIFYICON;
hIcon := HMainIcon;
szTip := 'System Tray Test';
end;
Shell_NotifyIcon(NIM_ADD, @NotifyIcnData);
end;
procedure TForm1.Show1Click(Sender: TObject);
begin
Show;
end;
end.
Comments