Tags
- postman collection
- C++
- postman html parse
- 우수한 프런트 개발자
- Intellij
- UI/UX Engineer
- postman collection variables
- Unity
- postman automations
- 프런트엔드
- solidity
- LSL_Script
- postman tests
- postman session
- postman pre-request
- oracle
- emplace_back
- postman
- MFC
- Interaction developer
- c#
- 좋은 개발자
- Android/iOS Developer
- postman csv
- postman excel
- web developer
- Front-end developer
- Java
- 다빈치 리졸브
- Android
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Archives
- Today
- Total
david's daily developer note
PopupMenu 본문
728x90
View 클래스 컨트롤 범위내에서, 마우스 우클릭에 의한 팝업메뉴 뛰우기,
View클래스
메시지 WM_CONTEXTMENU
함수 afx_msg void OnContextMenu(CWnd* /*pWnd*/, CPoint /*point*/);
App클래스
void CMyCADAppApp::PreLoadState ()
View클래스
메시지 WM_CONTEXTMENU
함수 afx_msg void OnContextMenu(CWnd* /*pWnd*/, CPoint /*point*/);
void CMyCADAppView::OnContextMenu(CWnd* /*pWnd*/, CPoint point)
{
theApp.ShowPopupMenu(IDR_CONTEXT_MENU , point , this);
} App클래스
void CMyCADAppApp::PreLoadState ()
{
GetContextMenuManager()->AddMenu (_T("My menu"), IDR_CONTEXT_MENU);
}
MainFrame클래스
MainFrame클래스
BOOL CMainFrame::OnShowPopupMenu(CBCGPPopupMenu* pMenuPopup)
{
CBCGPFrameWnd::OnShowPopupMenu(pMenuPopup);
return TRUE;
} 728x90
'[Develop] Native > Native' 카테고리의 다른 글
GetAsyncKeyState (0) | 2012.02.28 |
---|---|
윈도우 최소, 최대 크기 제한 (0) | 2012.02.27 |
CAtlMap Examples (0) | 2012.02.20 |
CCmdUI 클래스 (0) | 2012.02.20 |
MFC 파일 존재 여부 확인 (0) | 2012.02.15 |