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"λ‹«κΈ°κ°€ 선택");
}