À©µµ¿ì ÇÁ·Î±×·¡¹Ö ÀÚ·á

HomePage Backward Forward Post Reply List
Delete Modify
  Á¦¸ñ   [MFC] Popup ¸Þ´º 1999/01/16 (15:29)
À̸§ ±èÈ¿¿ø
¹øÈ£ 75
Á¶È¸ 662
º»¹® ¸¶¿ì½ºÀÇ ¿À¸¥ÂÊ ¹öÆ°À» ´­·¶À»¶§,
popup ¸Þ´º°¡ ³ª¿À°Ô ÇÏ´Â ¹æ¹ý

¸ÕÀú, ¸Þ´º¸¦ ¸¸µç´Ù.


View.h ¾È¿¡
protected:
CPoint m_pointMsg;
CString m_szMsg;

¸¦ Ãß°¡ÇÏ°í,

View::OnDraw()¾È¿¡,
pDC->TextOut(m_pointMsg.x,m_pointMsg.y,m_szMsg);

View.cpp ¾È¿¡
OnRButtonDown¸â¹ö ÇÔ¼ö¸¦ ¸¸µé°í
(ClassWizard¾È¿¡¼­)

CMenu popMenu;
m_pointMsg=point;
ClientToScreen(&point);
popMenu.LoadMenu(IDR_POPUP);
CMenu * pPopup=popMenu.GetSubMenu(0);
pPopup->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, point.x, point.y,
this);


// GetSubMenu(0)˼
ù¹ø° ÁÖ¸Þ´º¿¡ °üÇÑ ºÎ¸Þ´º¸¸ Ç¥½ÃÇÑ´Ù.
ÁÖ¸Þ´ºÀÎ Æ˾÷ ¸Þ´º´Â ¿À¸¥ÂÊ ¸¶¿ì½º ¹öÆ°À»
Ŭ¸¯ÇÏ¿´À»¶§ ³ªÅ¸³ªÁö ¾Ê´Â´Ù.

HomePage Backward Forward Post Reply List
1998 by swindler