资源简介
谁说MFC界面不好看啊,我就不信。于是自己动手编了这个界面,大家做适当修改就可以应用到自己的项目中了。
代码片段和文件信息
// jiemian.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “jiemian.h“
#include “jiemianDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CJiemianApp
BEGIN_MESSAGE_MAP(CJiemianApp CWinApp)
//{{AFX_MSG_MAP(CJiemianApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CJiemianApp construction
CJiemianApp::CJiemianApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CJiemianApp object
CJiemianApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CJiemianApp initialization
BOOL CJiemianApp::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
CJiemianDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 417859 2012-02-23 19:55 jiemian\Debug\jiemian.exe
文件 262928 2012-02-23 19:55 jiemian\Debug\jiemian.ilk
文件 14918 2012-02-23 19:53 jiemian\Debug\jiemian.obj
文件 5500532 2012-02-23 16:55 jiemian\Debug\jiemian.pch
文件 402432 2012-02-23 19:55 jiemian\Debug\jiemian.pdb
文件 253908 2012-02-23 18:33 jiemian\Debug\jiemian.res
文件 38189 2012-02-23 19:55 jiemian\Debug\jiemianDlg.obj
文件 19843 2012-02-23 19:53 jiemian\Debug\MyButton.obj
文件 105577 2012-02-23 16:55 jiemian\Debug\StdAfx.obj
文件 214016 2012-03-10 10:16 jiemian\Debug\vc60.idb
文件 372736 2012-02-23 19:55 jiemian\Debug\vc60.pdb
文件 273180 2012-03-10 10:16 jiemian\jiemian.aps
文件 1392 2012-03-10 10:16 jiemian\jiemian.clw
文件 2077 2012-02-22 10:03 jiemian\jiemian.cpp
文件 4589 2012-02-23 11:46 jiemian\jiemian.dsp
文件 539 2012-02-22 10:03 jiemian\jiemian.dsw
文件 1335 2012-02-22 10:03 jiemian\jiemian.h
文件 74752 2012-03-10 10:16 jiemian\jiemian.ncb
文件 49664 2012-03-10 10:16 jiemian\jiemian.opt
文件 248 2012-03-10 10:16 jiemian\jiemian.plg
文件 5736 2012-02-23 18:33 jiemian\jiemian.rc
文件 9295 2012-02-23 19:55 jiemian\jiemianDlg.cpp
文件 2089 2012-02-23 17:31 jiemian\jiemianDlg.h
文件 5182 2012-02-23 19:53 jiemian\MyButton.cpp
文件 1590 2012-02-23 19:53 jiemian\MyButton.h
文件 3597 2012-02-22 10:03 jiemian\ReadMe.txt
文件 5838 2012-02-23 11:27 jiemian\res\FlashKVDown.bmp
文件 5838 2012-02-23 11:27 jiemian\res\FlashKVNormal.bmp
文件 5838 2012-02-23 11:27 jiemian\res\FlashKVSelect.bmp
文件 1078 2012-02-22 10:03 jiemian\res\jiemian.ico
............此处省略11个文件信息
- 上一篇:EasySize
- 下一篇:基于WinPcap的网络数据包捕获与分析源码
评论
共有 条评论