📄 sheetdlg.cpp
字号:
// SheetDlg.cpp : implementation file
//
#include "stdAfx.h"
#include "HiCut.h"
#include "SheetDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSheetDlg
IMPLEMENT_DYNAMIC(CSheetDlg, CPropertySheet)
CSheetDlg::CSheetDlg()
:CPropertySheet("高速加工参数查询系统" ,NULL, 0)
{
m_page1.Construct(IDD_PAGE1);
m_page2.Construct(IDD_PAGE2);
m_page3.Construct(IDD_PAGE3);
m_page4.Construct(IDD_PAGE4);
m_page5.Construct(IDD_PAGE5);
m_page6.Construct(IDD_PAGE6);
AddPage(&m_page1);
AddPage(&m_page2);
AddPage(&m_page3);
AddPage(&m_page4);
AddPage(&m_page5);
AddPage(&m_page6);
}
CSheetDlg::~CSheetDlg()
{
}
BEGIN_MESSAGE_MAP(CSheetDlg, CPropertySheet)
//{{AFX_MSG_MAP(CSheetDlg)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSheetDlg message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -