首页 > 代码库 > Popup menu VS2005中使用

Popup menu VS2005中使用

      程序中 ,我们经常会使用到快捷菜单。快捷菜单的实现在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);
}