📄 devnative2asciitools.cpp
字号:
// DevNative2AsciiTools.cpp : implementation file
//
#include "stdafx.h"
#include "VisualJava.h"
#include "DevNative2AsciiTools.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDevNative2AsciiTools
IMPLEMENT_DYNAMIC(CDevNative2AsciiTools, CPropertySheet)
CDevNative2AsciiTools::CDevNative2AsciiTools(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
}
CDevNative2AsciiTools::CDevNative2AsciiTools(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
}
CDevNative2AsciiTools::~CDevNative2AsciiTools()
{
}
BEGIN_MESSAGE_MAP(CDevNative2AsciiTools, CPropertySheet)
//{{AFX_MSG_MAP(CDevNative2AsciiTools)
ON_WM_CLOSE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDevNative2AsciiTools message handlers
void CDevNative2AsciiTools::AddPages()
{
// AddPage(&m_wndNative2AsciiPage);
}
void CDevNative2AsciiTools::OnClose()
{
ShowWindow(SW_HIDE);
//CPropertySheet::OnClose();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -