📄 customdlg.h
字号:
#if !defined(AFX_CUSTOMDLG_H__D7207A19_3001_49CA_AD41_039DE4CA0C30__INCLUDED_)
#define AFX_CUSTOMDLG_H__D7207A19_3001_49CA_AD41_039DE4CA0C30__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// CustomDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CCustomDlg dialog
class CCustomDlg : public CFileDialog
{
DECLARE_DYNAMIC(CCustomDlg)
public:
virtual void OnFileNameChange();
CCustomDlg(BOOL bOpenFileDialog, // TRUE for FileOpen, FALSE for FileSaveAs
LPCTSTR lpszDefExt = NULL,
LPCTSTR lpszFileName = NULL,
DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
LPCTSTR lpszFilter = NULL,
CWnd* pParentWnd = NULL);
protected:
//{{AFX_MSG(CCustomDlg)
virtual BOOL OnInitDialog();
//}}AFX_MSG
CStatic m_bitmap;
CStatic m_width;
CStatic m_height;
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_CUSTOMDLG_H__D7207A19_3001_49CA_AD41_039DE4CA0C30__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -