📄 outputinfo.cpp
字号:
// outputinfo.cpp : implementation file
//
#include "stdafx.h"
#include "..\ToolSoftForPrint.h"
#include "outputinfo.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COutPutInfo property page
IMPLEMENT_DYNCREATE(COutPutInfo, CPropertyPage)
COutPutInfo::COutPutInfo() : CPropertyPage(COutPutInfo::IDD)
{
//{{AFX_DATA_INIT(COutPutInfo)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
COutPutInfo::~COutPutInfo()
{
}
void COutPutInfo::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
//{{AFX_DATA_MAP(COutPutInfo)
DDX_Control(pDX, IDC_EDIT1, m_Inf);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(COutPutInfo, CPropertyPage)
//{{AFX_MSG_MAP(COutPutInfo)
ON_WM_SIZE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COutPutInfo message handlers
void COutPutInfo::OnSize(UINT nType, int cx, int cy)
{
CPropertyPage::OnSize(nType, cx, cy);
if (m_Inf.GetSafeHwnd())
m_Inf.MoveWindow(0,0,cx,cy);
// TODO: Add your message handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -