Check菜单

来源:互联网 发布:广电网络怎么投诉电话 编辑:程序博客网 时间:2024/05/21 04:21
//.hBOOLm_bAccept;//关联变量CMenu *menuMain, *menuPopUp;//2个菜单LPPOINT m_lpoint;//弹出坐标afx_msg void OnMenuRecv();//映射//.cpp//构造函数中初始化menuMain = new CMenu;m_lpoint = new tagPOINT;VERIFY(menuMain->LoadMenu(IDR_MENU_POPUP)); menuPopUp = menuMain->GetSubMenu(0); //弹出菜单::GetCursorPos(m_lpoint); // 得到鼠标位置menuPopUp->TrackPopupMenu(TPM_LEFTALIGN, m_lpoint->x, m_lpoint->y, this); //弹出//点击check菜单m_bAccept = !m_bAccept;menuPopUp->CheckMenuItem(ID_Menu_RECV, m_bAccept? MF_CHECKED: MF_UNCHECKED);menuPopUp->TrackPopupMenu(TPM_LEFTALIGN, m_lpoint->x, m_lpoint->y, this); //析构或者DestroyWindow进行释放HMENU hmenu = menuMain->Detach();menuMain->DestroyMenu();menuPopUp = NULL;delete menuMain;menuMain = NULL;delete m_lpoint;


                                             
0 0
原创粉丝点击