audiorlt.cpp

来自「VC开发的一个笔记本线上测试系统」· C++ 代码 · 共 67 行

CPP
67
字号
// AudioRlt.cpp : implementation file
//

#include "stdafx.h"
#include "NoteBook.h"
#include "AudioRlt.h"

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

/////////////////////////////////////////////////////////////////////////////
// CAudioRlt dialog


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


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


BEGIN_MESSAGE_MAP(CAudioRlt, CDialog)
	//{{AFX_MSG_MAP(CAudioRlt)
	ON_BN_CLICKED(IDC_PASS, OnPass)
	ON_BN_CLICKED(IDC_FAIL, OnFail)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAudioRlt message handlers

void CAudioRlt::OnPass() 
{
	// TODO: Add your control notification handler code here
	
}

void CAudioRlt::OnFail() 
{
	// TODO: Add your control notification handler code here
	
}

BOOL CAudioRlt::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	MoveWindow(367,522,296,148,TRUE);
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

⌨️ 快捷键说明

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