⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deletedialog.cpp

📁 本上机平台专门为《计算机辅助设计技术基础》课程中的vC语言编程和交互技术与用户接口实验部分设计。
💻 CPP
字号:
// DeleteDialog.cpp : implementation file
//

#include "stdafx.h"
#include "Cg50.h"
#include "DeleteDialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDeleteDialog dialog


CDeleteDialog::CDeleteDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CDeleteDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDeleteDialog)
	m_select = 0;
	//}}AFX_DATA_INIT
}


void CDeleteDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDeleteDialog)
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDeleteDialog, CDialog)
	//{{AFX_MSG_MAP(CDeleteDialog)
	ON_BN_CLICKED(IDC_ROUND, OnRound)
	ON_BN_CLICKED(IDC_RECT, OnRect)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDeleteDialog message handlers

void CDeleteDialog::OnRound() 
{
	// TODO: Add your control notification handler code here
	m_select = 1;
}

void CDeleteDialog::OnRect() 
{
	// TODO: Add your control notification handler code here
	m_select = 0;
}

⌨️ 快捷键说明

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