⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fontlist.h

📁 传真示例
💻 H
字号:
// FontList.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CFontList window
#ifndef _CFontList_h
#define _CFontList_h

class CLoadFontView;

class CFontList : public CListBox
{
// Construction
public:
	CFontList(CLoadFontView *pView);
	void SetListSelection(int iIndex, int iSubItem);

// Attributes
public:

private:
	int m_iIndex, m_iSubItem;
	CLoadFontView* m_pView;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFontList)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CFontList();

	// Generated message map functions
protected:
	//{{AFX_MSG(CFontList)
	afx_msg void OnSelchange();
	afx_msg void OnKillfocus();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

#endif

/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -