用VC制作带弹出式菜单的按钮(整理以后的扩展类)

这个博客介绍如何使用VC++创建一个带有弹出式菜单的自定义按钮类CMenuButton。类包含了构造、属性设置、绘制方法以及响应鼠标事件的处理,实现了按钮的不同状态效果,并能在点击按钮时显示指定的菜单。
摘要由CSDN通过智能技术生成

//头文件

#if !defined(AFX_MENUBUTTON_H__B0745FB2_A382_4B46_8C67_B5369E51CB91__INCLUDED_)
#define AFX_MENUBUTTON_H__B0745FB2_A382_4B46_8C67_B5369E51CB91__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MenuButton.h : header file
//

/
// CMenuButton window

class CMenuButton : public CButton
{
// Construction
public:
 CMenuButton();

// Attributes
public:
     CRect  m_ButRect;
  CRect  m_LRect;
  CRect  m_RRect;
  int    m_State;
  BOOL   b_InFlag;
  BOOL   b_ClickFlag;
  BOOL   b_ClickBut;
  CMenu  m_Menu;
     COLORREF m_BackColor;
  COLORREF m_ForeColor;
  CString  m_strText;
  int      m_MenuID;
// Operations
public:

// Overrides
 // ClassWizard generated virtual function overrides
 //{ {AFX_VIRTUAL(CMenuButton)
 public:
 virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
 protected:
 virtual void PreSubclassWindow();
 //}}AFX_VIRTUAL

// Implementation
public:
 BOOL isClick();
 void SetBkColor(COLORREF color);
 void SetForeColor(COLORREF color);
 void SetText(CString str);
 void SetMenuID(int nID);
 void DrawButton(CDC *pDC);
 virtual ~CMenuButton();

 // Generated message map functions
protected:
 //{ {AFX_MSG(CMenuButton)
 afx_msg void OnMouseMove(UINT nFlags, CPoint point);
 afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
 afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
 //}}AFX_MSG

 DECLARE_MESSAGE_MAP()
};

/

//{ {AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值