📄 dialogpage.cpp
字号:
// DialogPage.cpp : 实现文件
//
#include "stdafx.h"
#include "VisDraw.h"
#include "DialogPage.h"
// CDialogPage 对话框
IMPLEMENT_DYNAMIC(CDialogPage, CDialog)
CDialogPage::CDialogPage(CWnd* pParent /*=NULL*/)
: CDialog(CDialogPage::IDD, pParent)
{
}
CDialogPage::~CDialogPage()
{
}
void CDialogPage::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CDialogPage, CDialog)
END_MESSAGE_MAP()
// CDialogPage 消息处理程序
BOOL CDialogPage::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: 在此添加额外的初始化
// m_sheet.AddPage(&m_page2);
//m_sheet.Create(this,WS_CHILD|WS_VISIBLE);
//m_sheet.ModifyStyleEx(0,WS_EX_CONTROLPARENT);
//m_sheet.SetWindowPos(NULL,5,5,50,50,SWP_NOZORDER|SWP_NOSIZE|SWP_NOACTIVATE);
return TRUE; // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -