资源简介

该程序使用win32编程技术实现了托盘图标所涉及的各种功能,没有使用mfc。

资源截图

代码片段和文件信息

#include 
#include “stdafx.h“
/*#include “testDialog.h“

INT_PTR CALLBACK    dialogTest(HWND UINT WPARAM LPARAM);
int APIENTRY _tWinMain(HINSTANCE hInstance
   HINSTANCE hPrevInstance
   LPTSTR    lpCmdLine
   int       nCmdShow)
{
DialogBox(hInstance MAKEINTRESOURCE(IDD_DIALOG1) NULL dialogTest);
return 0;
}

INT_PTR CALLBACK  dialogTest(HWND hDlg UINT message WPARAM wParam LPARAM lParam)
{
UNREFERENCED_PARAMETER(lParam);
switch (message)
{
case WM_INITDIALOG:
return (INT_PTR)TRUE;

case WM_COMMAND:
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
{
EndDialog(hDlg LOWORD(wParam));
return (INT_PTR)TRUE;
}
break;
}
return (INT_PTR)FALSE;
}*/

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      94720  2012-07-24 11:49  testDialog\Debug\testDialog.exe

     文件     403336  2012-07-24 11:49  testDialog\Debug\testDialog.ilk

     文件     879616  2012-07-24 11:49  testDialog\Debug\testDialog.pdb

     文件      10420  2012-07-24 11:49  testDialog\testDialog\Debug\BuildLog.htm

     文件       1937  2012-07-24 11:49  testDialog\testDialog\Debug\main.obj

     文件         67  2012-07-24 11:49  testDialog\testDialog\Debug\mt.dep

     文件     117377  2012-07-24 11:49  testDialog\testDialog\Debug\stdafx.obj

     文件        663  2012-07-23 16:19  testDialog\testDialog\Debug\testDialog.exe.embed.manifest

     文件        728  2012-07-23 16:19  testDialog\testDialog\Debug\testDialog.exe.embed.manifest.res

     文件        621  2012-07-24 11:49  testDialog\testDialog\Debug\testDialog.exe.intermediate.manifest

     文件      21562  2012-07-24 11:49  testDialog\testDialog\Debug\testDialog.obj

     文件    6815744  2012-07-24 11:49  testDialog\testDialog\Debug\testDialog.pch

     文件      48560  2012-07-23 16:23  testDialog\testDialog\Debug\testDialog.res

     文件     257024  2012-07-24 11:49  testDialog\testDialog\Debug\vc90.idb

     文件     389120  2012-07-24 11:49  testDialog\testDialog\Debug\vc90.pdb

     文件        752  2012-07-17 14:17  testDialog\testDialog\main.cpp

     文件       1979  2012-07-17 12:18  testDialog\testDialog\ReadMe.txt

     文件       1221  2012-07-23 16:12  testDialog\testDialog\resource.h

     文件      23558  2003-07-24 09:52  testDialog\testDialog\small.ico

     文件        215  2012-07-17 12:18  testDialog\testDialog\stdafx.cpp

     文件        491  2012-07-24 11:49  testDialog\testDialog\stdafx.h

     文件        739  2012-07-19 18:23  testDialog\testDialog\targetver.h

     文件      52800  2012-07-23 16:23  testDialog\testDialog\testDialog.aps

     文件       7357  2012-07-24 19:09  testDialog\testDialog\testDialog.cpp

     文件         39  2012-07-17 12:18  testDialog\testDialog\testDialog.h

     文件      23558  2003-07-24 09:52  testDialog\testDialog\testDialog.ico

     文件       4540  2012-07-23 16:23  testDialog\testDialog\testDialog.rc

     文件       4885  2012-07-17 13:43  testDialog\testDialog\testDialog.vcproj

     文件       1427  2012-07-24 19:09  testDialog\testDialog\testDialog.vcproj.65E6380A890746A.Administrator.user

     文件    6474752  2012-07-24 19:09  testDialog\testDialog.ncb

............此处省略9个文件信息

评论

共有 条评论