码迷,mamicode.com
首页 > 其他好文 > 详细

Popup menu VS2005中使用

时间:2014-05-09 22:10:04      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:style   ext   c   int   get   文件   

      程序中 ,我们经常会使用到快捷菜单。快捷菜单的实现在vc6.0中是要加载一个组件(Popup menu)。但是我们在vs2005 中,创建一个快捷菜单的方式有点不同。我们先创建一个菜单资源,在类中加载消息WM_CONTEXTMENU。在我们的头文件会有一个消息响应函数 声明。

     afx_msg void OnContextMenu(CWnd* /*pWnd*/, CPoint Point);  

   在BEGIN_MESSAGE_MAP和END_MESSAGE_MAP中加入 ON_WM_CONTEXTMENU()。在cpp文件中实现void OnContextMenu(CWnd* /*pWnd*/, CPoint Point);  

void CPopUpmenuDlg::OnContextMenu(CWnd*,CPoint Point)
{
if(Point.x==-1 && Point.y ==-1)
{
 CRect rect;
 GetClientRect(rect);
 ClientToScreen(rect);
 Point =rect.TopLeft();
 Point.Offset(5,5);
}

CMenu menu;
VERIFY(menu.LoadMenuW(IDR_MENU2));//IDR_MENU2是你创建Menu控件的资源ID
CMenu*  pPopup=menu.GetSubMenu(0);
CWnd *  pWndPopupOwner=this;
while ( pWndPopupOwner->GetStyle() & WS_CHILD)
           pWndPopupOwner=pWndPopupOwner->GetParent();
pPopup->TrackPopupMenu(TPM_LEFTALIGN |TPM_RIGHTBUTTON,Point.x,
  Point.y,pWndPopupOwner);
}


Popup menu VS2005中使用,布布扣,bubuko.com

Popup menu VS2005中使用

标签:style   ext   c   int   get   文件   

原文地址:http://blog.csdn.net/wuan584974722/article/details/25387563

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!