void CH7TrayDlg::OnMenuId( UINT id )

{

switch( id )

{

case 31001: // 숨기기

this->ShowWindow( SW_SHOW );

break;


case 31002: // 종료

this->DestroyWindow();

break;


default:

break;

}

}


ON_COMMAND_RANGE( 31001, 31002, OnMenuId )

afx_msg void OnMenuId( UINT id );

'NativeCode > mfc' 카테고리의 다른 글

Tray(소스 有)  (0) 2010.03.18
Tray Icon Refresh  (0) 2010.03.18
트레이아이콘으로 이동하는 애니메이션  (0) 2010.03.18
날짜구하기  (0) 2010.03.18
문자열 포맷 변환  (0) 2010.03.18

+ Recent posts