myedwprj.cpp

来自「一个完整的编辑器的代码(很值得参考」· C++ 代码 · 共 37 行

CPP
37
字号

#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 + =
减小字号Ctrl + -
显示快捷键?