info.cpp
来自「一个图书管理程序 其中数据库部分需要自己设置 具体设置请参看源码」· C++ 代码 · 共 34 行
CPP
34 行
// Info.cpp : 实现文件
//
#include "stdafx.h"
#include "library.h"
#include "Info.h"
// Info 对话框
IMPLEMENT_DYNAMIC(Info, CDialog)
Info::Info(CWnd* pParent /*=NULL*/)
: CDialog(Info::IDD, pParent)
{
}
Info::~Info()
{
}
void Info::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(Info, CDialog)
END_MESSAGE_MAP()
// Info 消息处理程序
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?