📄 xpmenu.h
字号:
// XPMenu.h: interface for the CXPMenu class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_XPMENU_H__EE2550C4_41A5_4313_8B33_186F4476AD69__INCLUDED_)
#define AFX_XPMENU_H__EE2550C4_41A5_4313_8B33_186F4476AD69__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// informations for menu items
class CItemInfo
{
public:
UINT uIdNormal;
UINT uIdSelect;
CString sText;
};
class CXPMenu : public CMenu
{
public:
// construction / destruction
CXPMenu();
virtual ~CXPMenu();
// general functions
void DrawBgClr(CDC* pDC, CRect rect, BOOL bSelected);
void DrawIcon(CDC* pDC, CRect rect, UINT uIdNormal, UINT uIdSelect, BOOL bSelected);
void DrawText(CDC* pDC, CRect rect, CString sText);
// virtual functions
virtual void DrawItem(LPDRAWITEMSTRUCT);
virtual void MeasureItem(LPMEASUREITEMSTRUCT lpMIS);
};
#endif // !defined(AFX_XPMENU_H__EE2550C4_41A5_4313_8B33_186F4476AD69__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -