-
大小: 4.21MB文件类型: .rar金币: 1下载: 0 次发布日期: 2023-08-14
- 语言: C/C++
- 标签:
资源简介
MFC背景位图,可以用键盘上的上下左右控制人物的走动,不出现闪烁效果
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “SSSSS.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
CMainframe::~CMainframe()
{
}
int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1; // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1; // fail to create
}
// TODO: Delete these three lines if you don‘t want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2235 2009-06-23 19:51 Bitmap\SSSSS.clw
文件 4287 2009-06-23 16:37 Bitmap\ReadMe.txt
文件 1345 2009-06-23 16:37 Bitmap\SSSSS.h
文件 4191 2009-06-23 16:37 Bitmap\SSSSS.cpp
文件 1054 2009-06-23 16:37 Bitmap\StdAfx.h
文件 207 2009-06-23 16:37 Bitmap\StdAfx.cpp
文件 1581 2009-06-23 16:37 Bitmap\MainFrm.h
文件 2506 2009-06-23 16:37 Bitmap\MainFrm.cpp
文件 1464 2009-06-23 16:37 Bitmap\SSSSSDoc.h
文件 1722 2009-06-23 16:37 Bitmap\SSSSSDoc.cpp
文件 533 2009-06-23 16:37 Bitmap\SSSSS.dsw
文件 58368 2009-06-25 09:13 Bitmap\SSSSS.ncb
文件 555 2009-06-25 09:12 Bitmap\SSSSS.plg
文件 1925 2009-06-23 19:01 Bitmap\SSSSSView.h
文件 11806 2009-06-23 19:30 Bitmap\SSSSS.rc
文件 727 2009-06-23 19:30 Bitmap\Resource.h
文件 2484256 2009-06-23 19:30 Bitmap\SSSSS.APS
文件 4933 2009-06-23 19:51 Bitmap\SSSSS.dsp
文件 4681 2009-06-24 15:34 Bitmap\SSSSSView.cpp
文件 48640 2009-06-25 09:13 Bitmap\SSSSS.opt
文件 397 2009-06-23 16:37 Bitmap\res\SSSSS.rc2
文件 1078 2009-06-23 16:37 Bitmap\res\SSSSSDoc.ico
文件 1078 2009-06-23 16:37 Bitmap\res\SSSSS.ico
文件 1078 2009-06-23 16:37 Bitmap\res\Toolbar.bmp
文件 2359350 2009-06-23 16:46 Bitmap\res\月色.bmp
文件 31446 2009-06-23 17:12 Bitmap\res\222.bmp
文件 31446 2009-06-23 17:31 Bitmap\res\bitmap2.bmp
文件 37494 2009-06-23 17:33 Bitmap\res\111.bmp
文件 37494 2009-06-23 17:40 Bitmap\res\新建 BMP 图像.bmp
文件 43254 2009-06-23 19:30 Bitmap\res\11.bmp
............此处省略17个文件信息
评论
共有 条评论