questconnect.cpp

来自「局域网视频聊天」· C++ 代码 · 共 58 行

CPP
58
字号
// QuestConnect.cpp : implementation file
//

#include "stdafx.h"
#include "PTPHelp.h"
#include "QuestConnect.h"

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

/////////////////////////////////////////////////////////////////////////////
// CQuestConnect dialog


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


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


BEGIN_MESSAGE_MAP(CQuestConnect, CDialog)
	//{{AFX_MSG_MAP(CQuestConnect)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CQuestConnect message handlers

void CQuestConnect::OnQuestconnect() 
{
	// TODO: Add your control notification handler code here
	
}

void CQuestConnect::OnOK() 
{
	// TODO: Add extra validation here
	UpdateData(true);

	
	CDialog::OnOK();
}

⌨️ 快捷键说明

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