MFC中弹出菜单的两种形式总结

在MFC中对于弹出菜单项的说明总结:

5.弹出菜单的两种用途:
//非最小化托盘弹出菜单
CPoint pt;
CRect mRect;
CMenu mMenu, *pMenu = NULL;
GetCursorPos(&pt);


mMenu.LoadMenu(IDR_DELETEMENU);
pMenu = mMenu.GetSubMenu(0);
pMenu->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, pt.x, pt.y, this);




//用于最小化托盘弹出菜单
CMenu mMenu, *pMenu = NULL;
CPoint pt;
mMenu.LoadMenu(IDR_TRAYMENU);
pMenu = mMenu.GetSubMenu(0);
GetCursorPos(&pt);
SetForegroundWindow(); 
pMenu->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, pt.x, pt.y, this);

以上两者的区别主要是:SetForegroundWindow(); //区别


好了,关于MFC弹出菜单项就介绍到这里,如果大家有什么问题请直接联系我,或者哪里讲错了都可以联系我。新浪邮箱:[email protected]

你可能感兴趣的:(MFC区)