📄 config.h
字号:
// Config.h: interface for the CConfig class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CONFIG_H__7F2CC463_AE19_4793_AA6A_AD08168B59DB__INCLUDED_)
#define AFX_CONFIG_H__7F2CC463_AE19_4793_AA6A_AD08168B59DB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CConfig : public CObject
{
public:
BOOL RemovePath(CString path);
BOOL InsertPath(CString path);
// 成员变量
CFont m_font;
CString m_path;
int m_poision;
CString m_filename;
CStringList m_pathlist;
COLORREF m_txtcolor;
COLORREF m_bkgcolor;
// 成员函数
CConfig();
virtual void Serialize(CArchive &ar);
virtual ~CConfig();
};
#endif // !defined(AFX_CONFIG_H__7F2CC463_AE19_4793_AA6A_AD08168B59DB__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -