toolpalettebar.h

来自「此程序实现类似于windows画图工具的源代码。有铅笔」· C头文件 代码 · 共 41 行

H
41
字号

#ifndef __CTOOLPALETTEBAR__
#define __CTOOLPALETTEBAR__
class CToolPaletteBar : public CToolBar
{
// Constructor
public:
	CToolPaletteBar();
	void SetColumns(UINT nColumns);
	UINT GetColumns() { return m_nColumns; };

// Attributes
public:
	CComboBox   m_comboBox;
	CListCtrl   m_listStyle;
	CFont       m_font;
// Operations
public:

// Implementation
public:
	virtual ~CToolPaletteBar();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
	UINT m_nColumns;

// Generated message map functions
protected:
	//{{AFX_MSG(CToolPaletteBar)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

	
};
#endif
/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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