mfc_popup_1 - 8BitsCoding/RobotMentor GitHub Wiki
λ©λ΄μ λͺ λ ΉμΆκ°λ ν΄λμ€ λ§λ²μ¬μμ νλ€.
void CMFCApplication1Dlg::OnRButtonDown(UINT nFlags, CPoint point)
{
CMenu menu;
menu.LoadMenu(IDR_MY_MENU);
CMenu * p_sub_menu = menu.GetSubMenu(0);
CPoint pos;
GetCursorPos(&pos);
p_sub_menu->TrackPopupMenu(TPM_LEFTALIGN, pos.x, pos.y, this);
menu.DestroyMenu();
CDialogEx::OnRButtonDown(nFlags, point);
}
void CMFCApplication1Dlg::OnMyOpen()
{
AfxMessageBox(L"μ΄κΈ°κ° μ ν");
}
void CMFCApplication1Dlg::OnMyClose()
{
AfxMessageBox(L"λ«κΈ°κ° μ ν");
}