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.
45 lines
763 B
C++
45 lines
763 B
C++
|
|
#include "stdafx.h"
|
|
#include "LaiPuLaser.h"
|
|
#include "afxdialogex.h"
|
|
#include "DlgChildLaserPowCheck.h"
|
|
#include "GlobalFunction.h"
|
|
#include "LogMgr.h"
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC(CDlgChildLaserPowCheck, CMyDlgView)
|
|
BEGIN_MESSAGE_MAP(CDlgChildLaserPowCheck, CMyDlgView)
|
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
CDlgChildLaserPowCheck::CDlgChildLaserPowCheck(CWnd* pParent /*=NULL*/)
|
|
: CMyDlgView(CDlgChildLaserPowCheck::IDD, pParent)
|
|
{
|
|
|
|
}
|
|
|
|
CDlgChildLaserPowCheck::~CDlgChildLaserPowCheck()
|
|
{
|
|
}
|
|
|
|
void CDlgChildLaserPowCheck::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CMyDlgView::DoDataExchange(pDX);
|
|
|
|
}
|
|
|
|
BOOL CDlgChildLaserPowCheck::OnInitDialog()
|
|
{
|
|
CMyDlgView::OnInitDialog();
|
|
|
|
UpdateData(FALSE);
|
|
return TRUE;
|
|
}
|
|
//ÏìÓ¦view ´ò¿ªµÄʱºò
|
|
void CDlgChildLaserPowCheck::OnViewOpen()
|
|
{
|
|
|
|
}
|