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

📄 dialog6.cpp

📁 教工请假情况登记
💻 CPP
字号:
// Dialog6.cpp : implementation file
//

#include "stdafx.h"
#include "办公室负责登入教工请假情况.h"
#include "办公室负责登入教工请假情况Dlg.h"
#include "Dialog6.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDialog6 dialog


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


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


BEGIN_MESSAGE_MAP(CDialog6, CDialog)
	//{{AFX_MSG_MAP(CDialog6)
	ON_BN_CLICKED(IDC_MODIFY, OnModify)
	ON_BN_CLICKED(IDC_DELETE, OnDelete)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDialog6 message handlers

void CDialog6::OnCancel() 
{
	// TODO: Add extra cleanup here
	CMyDlg dlg;
	dlg.DoModal();
	CDialog::OnCancel();
}

void CDialog6::OnOK() 
{
	// TODO: Add extra validation here
	
	CDialog::OnOK();
}

void CDialog6::OnModify() 
{
	// TODO: Add your control notification handler code here seven fuction
	
}

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

⌨️ 快捷键说明

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