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.

40 lines
667 B
C++

#include "stdafx.h"
#include "LaiPuLaser.h"
#include "afxdialogex.h"
#include "Dlgxxxxxxxxx.h"
IMPLEMENT_DYNAMIC(CDlgxxxxxxxxxxx, CDialogEx)
BEGIN_MESSAGE_MAP(CDlgxxxxxxxxxxx, CDialogEx)
ON_BN_CLICKED(IDOK,OnBnClickedOk)
END_MESSAGE_MAP()
CDlgxxxxxxxxxxx::CDlgxxxxxxxxxxx(CWnd* pParent /*=NULL*/)
: CDialogEx(CDlgxxxxxxxxxxx::IDD, pParent)
{
}
CDlgxxxxxxxxxxx::~CDlgxxxxxxxxxxx()
{
}
void CDlgxxxxxxxxxxx::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BOOL CDlgxxxxxxxxxxx::OnInitDialog()
{
CDialogEx::OnInitDialog();
UpdateData(FALSE);
return TRUE;
}
void CDlgxxxxxxxxxxx::OnBnClickedOk()
{
OnOK();
}