aplview.cpp

来自「用户管理系统」· C++ 代码 · 共 78 行

CPP
78
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?