📄 securitytools.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 + -