⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 securitytools.cpp

📁 用bcg库编写的java IDE 源码
💻 CPP
字号:
// SecurityTools.cpp : implementation file
//

#include "stdafx.h"
#include "VisualJava.h"
#include "SecurityTools.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CSecurityTools

IMPLEMENT_DYNAMIC(CSecurityTools, CPropertySheet)

CSecurityTools::CSecurityTools(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
}

CSecurityTools::CSecurityTools(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
}

CSecurityTools::~CSecurityTools()
{
}


BEGIN_MESSAGE_MAP(CSecurityTools, CPropertySheet)
	//{{AFX_MSG_MAP(CSecurityTools)
	ON_WM_CLOSE()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSecurityTools message handlers

void CSecurityTools::AddPages()
{
  /*
  AddPage(&m_wndKeyToolPage);
  AddPage(&m_wndJarSignerPage);
  */
}

void CSecurityTools::OnClose() 
{
	ShowWindow(SW_HIDE);
//	CPropertySheet::OnClose();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -