📄 inputexdlg.h
字号:
#pragma once
// CInputExDlg 对话框
class CInputExDlg : public CDialog
{
DECLARE_DYNAMIC(CInputExDlg)
public:
CInputExDlg(CWnd* pParent = NULL); // 标准构造函数
CInputExDlg(CWnd* pParent , LPCTSTR szTitleEx, LPCTSTR Static1, LPCTSTR Edit1, bool Enable1, LPCTSTR Static2, LPCTSTR Edit2, bool Enable2, LPCTSTR Static3, LPCTSTR Edit3, bool Enable3, LPCTSTR Static4, LPCTSTR Edit4, bool Enable4, LPCTSTR Static5, LPCTSTR Edit5, bool Enable5, LPCTSTR Static6, LPCTSTR Edit6, bool Enable6 );
virtual ~CInputExDlg();
CString m_strTitleEx;
CString m_strStatic1;
CString m_strEdit1;
CString m_strStatic2;
CString m_strEdit2;
CString m_strStatic3;
CString m_strEdit3;
CString m_strStatic4;
CString m_strEdit4;
CString m_strStatic5;
CString m_strEdit5;
CString m_strStatic6;
CString m_strEdit6;
bool Enabled1;
bool Enabled2;
bool Enabled3;
bool Enabled4;
bool Enabled5;
bool Enabled6;
// 对话框数据
enum { IDD = IDD_DIALOG_INPUTMSGEX };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
afx_msg void OnBnClickedOk();
afx_msg void OnBnClickedCancel();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -