equ_infodlg.cpp
来自「此文件是加油站管理系统的界面,开发环境是 visual studio 2008 」· C++ 代码 · 共 55 行
CPP
55 行
// equ_infoDlg.cpp : implementation file
//
#include "stdafx.h"
#include "newgas.h"
#include "equ_infoDlg.h"
// Cequ_infoDlg dialog
IMPLEMENT_DYNAMIC(Cequ_infoDlg, CDialog)
Cequ_infoDlg::Cequ_infoDlg(CWnd* pParent /*=NULL*/)
: CDialog(Cequ_infoDlg::IDD, pParent)
{
}
Cequ_infoDlg::~Cequ_infoDlg()
{
}
void Cequ_infoDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(Cequ_infoDlg, CDialog)
ON_BN_CLICKED(IDC_BUTTON1, &Cequ_infoDlg::OnBnClickedButton1)
ON_BN_CLICKED(IDC_BUTTON2, &Cequ_infoDlg::OnBnClickedButton2)
ON_CBN_SELCHANGE(IDC_style, &Cequ_infoDlg::OnCbnSelchangestyle)
END_MESSAGE_MAP()
// Cequ_infoDlg message handlers
void Cequ_infoDlg::OnBnClickedButton1()
{
// TODO: Add your control notification handler code here
}
void Cequ_infoDlg::OnBnClickedButton2()
{
OnCancel();// TODO: Add your control notification handler code here
}
void Cequ_infoDlg::OnCbnSelchangestyle()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?