// [!output DIALOG_HEADER] : 헤더 파일 // #pragma once // [!output DIALOG_CLASS] 대화 상자 class [!output DIALOG_CLASS] : public [!output DIALOG_BASE_CLASS] { // 생성입니다. public: [!output DIALOG_CLASS](CWnd* pParent = NULL); // 표준 생성자입니다. // 대화 상자 데이터입니다. enum { IDD = IDD_[!output UPPER_CASE_SAFE_PROJECT_IDENTIFIER_NAME]_DIALOG }; [!if !MULTIPLE_PLATFORM] [!if SMARTPHONE2003_UI_MODEL] protected: // 컨트롤 모음이 포함된 멤버입니다. CCommandBar m_dlgCommandBar; [!endif] [!else] [!if SMARTPHONE2003_UI_MODEL] #ifdef WIN32_PLATFORM_WFSP protected: // 컨트롤 모음이 포함된 멤버입니다. CCommandBar m_dlgCommandBar; #endif // WIN32_PLATFORM_WFSP [!endif] [!endif] protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다. // 구현입니다. protected: HICON m_hIcon; // 생성된 메시지 맵 함수 virtual BOOL OnInitDialog(); #if defined(_DEVICE_RESOLUTION_AWARE) && !defined(WIN32_PLATFORM_WFSP) afx_msg void OnSize(UINT /*nType*/, int /*cx*/, int /*cy*/); #endif [!if HELPSTYLE_WINHELP] afx_msg void OnHelpInfo() [!endif] DECLARE_MESSAGE_MAP() };