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