// PropOutputCfg.cpp: 实现文件
|
//
|
|
#include "pch.h"
|
#include "MTerm1.h"
|
#include "PropOutputCfg.h"
|
#include "afxdialogex.h"
|
|
|
// CPropOutputCfg 对话框
|
|
IMPLEMENT_DYNAMIC(CPropOutputCfg, CMyPropPage)
|
|
CPropOutputCfg::CPropOutputCfg(CWnd* pParent /*=nullptr*/)
|
: CMyPropPage(IDD_PROP_OUTPUT_SET, pParent)
|
{
|
|
}
|
|
CPropOutputCfg::~CPropOutputCfg()
|
{
|
}
|
|
void CPropOutputCfg::DoDataExchange(CDataExchange* pDX)
|
{
|
CDialogEx::DoDataExchange(pDX);
|
}
|
|
|
BEGIN_MESSAGE_MAP(CPropOutputCfg, CDialogEx)
|
END_MESSAGE_MAP()
|
|
|
// CPropOutputCfg 消息处理程序
|