-
大小: 137KB文件類型: .rar金幣: 2下載: 0 次發(fā)布日期: 2021-06-08
- 語言: C/C++
- 標(biāo)簽: 定時關(guān)機(jī)??shutdown??mfc??MFC??延時關(guān)機(jī)??
資源簡介
可以實現(xiàn)延時關(guān)機(jī)和定時關(guān)機(jī),界面友好,有源代碼

代碼片段和文件信息
//?shut.cpp?:?定義應(yīng)用程序的類行為。
//
#include?“stdafx.h“
#include?“shut.h“
#include?“shutDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#endif
//?CshutApp
BEGIN_MESSAGE_MAP(CshutApp?CWinAppEx)
ON_COMMAND(ID_HELP?&CWinApp::onhelp)
END_MESSAGE_MAP()
//?CshutApp?構(gòu)造
CshutApp::CshutApp()
{
//?TODO:?在此處添加構(gòu)造代碼,
//?將所有重要的初始化放置在?InitInstance?中
}
//?唯一的一個?CshutApp?對象
CshutApp?theApp;
//?CshutApp?初始化
BOOL?CshutApp::InitInstance()
{
//?如果一個運行在?Windows?XP?上的應(yīng)用程序清單指定要
//?使用?ComCtl32.dll?版本?6?或更高版本來啟用可視化方式,
//則需要?InitCommonControlsEx()。否則,將無法創(chuàng)建窗口。
INITCOMMONCONTROLSEX?InitCtrls;
InitCtrls.dwSize?=?sizeof(InitCtrls);
//?將它設(shè)置為包括所有要在應(yīng)用程序中使用的
//?公共控件類。
InitCtrls.dwICC?=?ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinAppEx::InitInstance();
AfxEnableControlContainer();
//?標(biāo)準(zhǔn)初始化
//?如果未使用這些功能并希望減小
//?最終可執(zhí)行文件的大小,則應(yīng)移除下列
//?不需要的特定初始化例程
//?更改用于存儲設(shè)置的注冊表項
//?TODO:?應(yīng)適當(dāng)修改該字符串,
//?例如修改為公司或組織名
SetRegistryKey(_T(“應(yīng)用程序向?qū)傻谋镜貞?yīng)用程序“));
CshutDlg?dlg;
m_pMainWnd?=?&dlg;
INT_PTR?nResponse?=?dlg.DoModal();
if?(nResponse?==?IDOK)
{
//?TODO:?在此放置處理何時用
//??“確定”來關(guān)閉對話框的代碼
}
else?if?(nResponse?==?IDCANCEL)
{
//?TODO:?在此放置處理何時用
//??“取消”來關(guān)閉對話框的代碼
}
//?由于對話框已關(guān)閉,所以將返回?FALSE?以便退出應(yīng)用程序,
//??而不是啟動應(yīng)用程序的消息泵。
return?FALSE;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????2683??2011-07-25?10:44??shutdown\ReadMe.txt
?????文件??????24064??2011-07-25?17:21??shutdown\Release\shut.exe
?????文件??????67777??2007-11-28?16:21??shutdown\res\1shut.ico
?????文件???????4286??2011-07-25?17:07??shutdown\res\Shut.ico
?????文件????????360??2011-07-25?10:44??shutdown\res\shut.rc2
?????文件????????906??2011-07-25?11:33??shutdown\resource.h
?????文件?????104472??2011-07-25?17:18??shutdown\shut.aps
?????文件???????1627??2011-07-25?10:44??shutdown\shut.cpp
?????文件????????433??2011-07-25?10:44??shutdown\shut.h
?????文件???????5300??2011-07-25?17:18??shutdown\shut.rc
?????文件???????5452??2011-07-25?10:54??shutdown\shut.vcproj
?????文件???????1413??2011-07-25?17:30??shutdown\shut.vcproj.wghua-PC.Administrator.user
?????文件???????6065??2011-07-25?17:21??shutdown\shutDlg.cpp
?????文件????????832??2011-07-25?15:35??shutdown\shutDlg.h
?????文件????????137??2011-07-25?10:44??shutdown\stdafx.cpp
?????文件???????1854??2011-07-25?10:44??shutdown\stdafx.h
?????文件???????1030??2011-07-25?10:44??shutdown\targetver.h
?????目錄??????????0??2011-07-25?17:25??shutdown\Debug
?????目錄??????????0??2011-07-25?17:30??shutdown\Release
?????目錄??????????0??2011-07-25?17:08??shutdown\res
?????目錄??????????0??2011-07-25?17:21??shutdown
-----------?---------??----------?-----??----
???????????????228691????????????????????21
評論
共有 條評論