controlok.cpp

来自「这是一个可以实现现代智能家居系统自动控制功能的源码」· C++ 代码 · 共 56 行

CPP
56
字号
// controlOK.cpp : implementation file
//

#include "stdafx.h"
#include "Fason.h"
#include "controlOK.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// controlOK dialog


controlOK::controlOK(CWnd* pParent /*=NULL*/)
	: CDialog(controlOK::IDD, pParent)
{
	//{{AFX_DATA_INIT(controlOK)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void controlOK::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(controlOK)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(controlOK, CDialog)
	//{{AFX_MSG_MAP(controlOK)
	ON_BN_CLICKED(ID_controlOK, OncontrolOK)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// controlOK message handlers

void controlOK::OncontrolOK() 
{
	// TODO: Add your control notification handler code here
}

int controlOK::DoModal() 
{
	// TODO: Add your specialized code here and/or call the base class
	
	return CDialog::DoModal();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?