资源简介

用VC+MFC 实现托盘管理,支持热键,图标闪烁,右键菜单,消息框渐现等功能,所有功能均测试通过,请放心使用,欢迎关注!

资源截图

代码片段和文件信息

// ModDlgTest.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “ModDlgTest.h“
#include “ModDlgTestDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CModDlgTestApp

BEGIN_MESSAGE_MAP(CModDlgTestApp CWinApp)
//{{AFX_MSG_MAP(CModDlgTestApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CModDlgTestApp construction

CModDlgTestApp::CModDlgTestApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CModDlgTestApp object

CModDlgTestApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CModDlgTestApp initialization

BOOL CModDlgTestApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CModDlgTestDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

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

     文件          0  2013-01-16 16:13  ModDlgTest\Debug\AFXSTATE.sbr

     文件    5383168  2013-01-17 09:42  ModDlgTest\Debug\ModDlgTest.bsc

     文件     110719  2013-01-17 09:42  ModDlgTest\Debug\ModDlgTest.exe

     文件     216792  2013-01-17 09:42  ModDlgTest\Debug\ModDlgTest.ilk

     文件      13520  2013-01-16 16:05  ModDlgTest\Debug\ModDlgTest.obj

     文件    6874316  2013-01-16 11:29  ModDlgTest\Debug\ModDlgTest.pch

     文件     394240  2013-01-17 09:42  ModDlgTest\Debug\ModDlgTest.pdb

     文件       3784  2013-01-17 09:35  ModDlgTest\Debug\ModDlgTest.res

     文件          0  2013-01-16 16:05  ModDlgTest\Debug\ModDlgTest.sbr

     文件      32784  2013-01-17 09:42  ModDlgTest\Debug\ModDlgTestDlg.obj

     文件          0  2013-01-17 09:42  ModDlgTest\Debug\ModDlgTestDlg.sbr

     文件     106037  2013-01-16 11:29  ModDlgTest\Debug\StdAfx.obj

     文件    1376669  2013-01-16 11:29  ModDlgTest\Debug\StdAfx.sbr

     文件     230400  2013-01-17 09:42  ModDlgTest\Debug\vc60.idb

     文件     372736  2013-01-17 09:42  ModDlgTest\Debug\vc60.pdb

     文件      38152  2013-01-17 10:53  ModDlgTest\ModDlgTest.aps

     文件       1340  2013-01-17 09:53  ModDlgTest\ModDlgTest.clw

     文件       2119  2012-08-12 16:23  ModDlgTest\ModDlgTest.cpp

     文件       4366  2013-01-17 10:53  ModDlgTest\ModDlgTest.dsp

     文件        543  2012-08-12 16:23  ModDlgTest\ModDlgTest.dsw

     文件       1368  2012-08-12 16:23  ModDlgTest\ModDlgTest.h

     文件      99328  2013-01-17 10:53  ModDlgTest\ModDlgTest.ncb

     文件      54784  2013-01-17 10:53  ModDlgTest\ModDlgTest.opt

     文件        759  2013-01-17 09:42  ModDlgTest\ModDlgTest.plg

     文件       5893  2013-01-17 10:53  ModDlgTest\ModDlgTest.rc

     文件       8677  2013-01-17 09:53  ModDlgTest\ModDlgTestDlg.cpp

     文件       1749  2013-01-17 09:26  ModDlgTest\ModDlgTestDlg.h

     文件       3651  2012-08-12 16:23  ModDlgTest\ReadMe.txt

     文件        326  2013-01-17 09:35  ModDlgTest\res\cursor1.cur

     文件        766  2013-01-16 15:32  ModDlgTest\res\icon1.ico

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

评论

共有 条评论