You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TwoLaserHead-PushJig/LaiPuLaser/DlgSimulateTrace.cpp

46 lines
912 B
C++

#include "stdafx.h"
#include "DlgSimulateTrace.h"
#include "afxdialogex.h"
#include "GlobalFunction.h"
#include "SimulateTrace.h"
#include "GlobalFunction.h"
#include "LogMgr.h"
#include "PropertieMgr.h"
IMPLEMENT_DYNAMIC(DlgSimulateTrace, CDialogEx)
DlgSimulateTrace::DlgSimulateTrace(CWnd* pParent /*=NULL*/)
{
}
DlgSimulateTrace::~DlgSimulateTrace()
{
}
void DlgSimulateTrace::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_SIMULATE_DELAY, m_Delay);
}
BEGIN_MESSAGE_MAP(DlgSimulateTrace, CDialogEx)
ON_BN_CLICKED(IDC_SIMULATE_START, &DlgSimulateTrace::OnBnClickedSimulateStart)
END_MESSAGE_MAP()
// CDlgStdMarkCtr 消息处理程序
BOOL DlgSimulateTrace::OnInitDialog()
{
CDialogEx::OnInitDialog();
m_Delay = 10;
UpdateData(FALSE);
return TRUE;
}
//开始轨迹模拟(按shift 键结束)
void DlgSimulateTrace::OnBnClickedSimulateStart()
{
}