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

📄 aplview.cpp

📁 用户管理系统
💻 CPP
字号:
// AplView.cpp : implementation file
//

#include "stdafx.h"
#include "Kvip.h"
#include "AplView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CAplView dialog


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


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


BEGIN_MESSAGE_MAP(CAplView, CDialog)
	//{{AFX_MSG_MAP(CAplView)
	ON_BN_CLICKED(IDC_SAVE, OnSave)
	ON_BN_CLICKED(IDC_EDIT, OnEdit)
	ON_BN_CLICKED(IDC_DELETE, OnDelete)
	ON_BN_CLICKED(IDC_CANCEL, OnCancel)
	ON_BN_CLICKED(IDC_APPEND, OnAppend)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAplView message handlers

void CAplView::OnCancel() 
{
	// TODO: Add your control notification handler code here
	
}

void CAplView::OnSave() 
{
	// TODO: Add your control notification handler code here
	
}

void CAplView::OnEdit() 
{
	// TODO: Add your control notification handler code here
	
}

void CAplView::OnDelete() 
{
	// TODO: Add your control notification handler code here
	
}

void CAplView::OnAppend() 
{
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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