📄 myedwprj.cpp
字号:
#include "stdafx.h"
#include "editcmd.h"
#include "resource.h"
#include "myedwprj.h"
#include "msdswprj.h"
#include "filesup.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#pragma warning ( disable : 4711 )
/////////////////////////////////////////////////////////////////////////////
IMPLEMENT_DYNAMIC (CMyEdwProject, CProject)
CMyEdwProject::CMyEdwProject ()
{
}
bool CMyEdwProject::Open (LPCTSTR pszPath)
{
return CMsDswProject::OpenDsw (this, pszPath);
}
bool CMyEdwProject::Save (LPCTSTR pszPath)
{
AfxMessageBox (_T ("Not implemented yet."));
return false;
}
/////////////////////////////////////////////////////////////////////////////
#pragma warning ( default : 4711 )
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -