myintro.cpp

来自「基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信」· C++ 代码 · 共 50 行

CPP
50
字号
// MyIntro.cpp : implementation file
//

#include "stdafx.h"
#include "Client.h"
#include "MyIntro.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyIntro dialog


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


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


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

/////////////////////////////////////////////////////////////////////////////
// CMyIntro message handlers

void CMyIntro::OnOK() 
{
	// TODO: Add extra validation here
	MessageBox("多谢你对本人以及该软件的帮助!\n谢谢您的使用,请多提宝贵意见!","网际飞标",MB_OK);
	CDialog::OnOK();
}

⌨️ 快捷键说明

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