showquest.cpp
来自「用VC++实现串口通信」· C++ 代码 · 共 57 行
CPP
57 行
// ShowQuest.cpp : implementation file
//
#include "stdafx.h"
#include "FFT_PROJECT.h"
#include "ShowQuest.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CShowQuest dialog
CShowQuest::CShowQuest(CWnd* pParent /*=NULL*/)
: CDialog(CShowQuest::IDD, pParent)
{
//{{AFX_DATA_INIT(CShowQuest)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CShowQuest::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CShowQuest)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CShowQuest, CDialog)
//{{AFX_MSG_MAP(CShowQuest)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CShowQuest message handlers
void CShowQuest::OnCancel()
{
// TODO: Add extra cleanup here
CDialog::OnCancel();
}
void CShowQuest::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?