📄 dsdxview.cpp
字号:
// DSDXView.cpp : implementation file
//
#include "stdafx.h"
#include "3d.h"
#include "DSDXView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDSDXView
IMPLEMENT_DYNCREATE(CDSDXView, CFormView)
CDSDXView::CDSDXView()
: CFormView(CDSDXView::IDD)
{
//{{AFX_DATA_INIT(CDSDXView)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
CDSDXView::~CDSDXView()
{
}
void CDSDXView::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDSDXView)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDSDXView, CFormView)
//{{AFX_MSG_MAP(CDSDXView)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDSDXView diagnostics
#ifdef _DEBUG
void CDSDXView::AssertValid() const
{
CFormView::AssertValid();
}
void CDSDXView::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDSDXView message handlers
void CDSDXView::OnInitialUpdate()
{
CFormView::OnInitialUpdate();
// TODO: Add your specialized code here and/or call the base class
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -