📄 gameview.cpp
字号:
// GameView.cpp : CGameView 类的实现
//
#include "stdafx.h"
#include "Game.h"
#include "GameView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CGameView
CGameView::CGameView()
{
}
CGameView::~CGameView()
{
}
BEGIN_MESSAGE_MAP(CGameView, CWnd)
ON_WM_PAINT()
END_MESSAGE_MAP()
// CGameView 消息处理程序
BOOL CGameView::PreCreateWindow(CREATESTRUCT& cs)
{
if (!CWnd::PreCreateWindow(cs))
return FALSE;
//让显示区的外框看起来是凹下去的,注释掉cs.dwExStyle |= WS_EX_CLIENTEDGE;
//cs.dwExStyle |= WS_EX_CLIENTEDGE;
cs.style &= ~WS_BORDER;
cs.lpszClass = AfxRegisterWndClass(CS_HREDRAW|CS_VREDRAW|CS_DBLCLKS,
::LoadCursor(NULL, IDC_ARROW), reinterpret_cast<HBRUSH>(COLOR_WINDOW+1), NULL);
return TRUE;
}
void CGameView::OnPaint()
{
CPaintDC dc(this); // 用于绘制的设备上下文
// TODO: 在此处添加消息处理程序代码
// 不要为绘制消息而调用 CWnd::OnPaint()
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -