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