📄 initdlg.h
字号:
#ifndef INITDLG_H
#define INITDLG_H
// Get needed include files
#include "Client.h"
class CInitialDialog : public CPropertyPage
{
public:
// Ctor & dtor
CInitialDialog(CSharedData& NewSharedData,
CComponentAssocList& NewAssocList);
// Overridden methods
virtual void DoDataExchange(CDataExchange* pDX);
virtual BOOL OnInitDialog();
virtual BOOL OnSetActive();
virtual BOOL OnKillActive();
private:
// Member data
CStatic m_Title;
CFont m_LargeArialFont;
CListBox m_ComponentList;
CSharedData* m_pSharedData;
CComponentAssocList* m_pAssociationList;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -