postheaderdlg.cpp
来自「这是VCF框架的代码」· C++ 代码 · 共 46 行
CPP
46 行
// PostHeaderDlg.cpp : implementation file//#include "stdafx.h"#include "vcfnewclasswiz.h"#include "PostHeaderDlg.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// PostHeaderDlg dialogPostHeaderDlg::PostHeaderDlg(CWnd* pParent /*=NULL*/) : CDialog(PostHeaderDlg::IDD, pParent){ //{{AFX_DATA_INIT(PostHeaderDlg) m_postHeaderText = _T(""); //}}AFX_DATA_INIT}void PostHeaderDlg::DoDataExchange(CDataExchange* pDX){ CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(PostHeaderDlg) DDX_Text(pDX, IDC_POST_HDR_TEXT, m_postHeaderText); //}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(PostHeaderDlg, CDialog) //{{AFX_MSG_MAP(PostHeaderDlg) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// PostHeaderDlg message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?