PPExplorer.cpp
上传用户:huashan618
上传日期:2013-03-26
资源大小:261k
文件大小:1k
源码类别:

浏览器

开发平台:

Visual C++

  1. // PPExplorer.cpp : 定义应用程序的类行为。
  2. //
  3. #include "stdafx.h"
  4. #include "PPExplorer.h"
  5. #include "PPExplorerDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CPPExplorerApp
  10. BEGIN_MESSAGE_MAP(CPPExplorerApp, CWinApp)
  11. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  12. END_MESSAGE_MAP()
  13. // CPPExplorerApp 构造
  14. CPPExplorerApp::CPPExplorerApp()
  15. {
  16. // TODO: 在此处添加构造代码,
  17. // 将所有重要的初始化放置在 InitInstance 中
  18. }
  19. // 唯一的一个 CPPExplorerApp 对象
  20. CPPExplorerApp theApp;
  21. // CPPExplorerApp 初始化
  22. BOOL CPPExplorerApp::InitInstance()
  23. {
  24. // 如果一个运行在 Windows XP 上的应用程序清单指定要
  25. // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
  26. //则需要 InitCommonControls()。否则,将无法创建窗口。
  27. InitCommonControls();
  28. CWinApp::InitInstance();
  29. //AfxEnableControlContainer();
  30. // 标准初始化
  31. // 如果未使用这些功能并希望减小
  32. // 最终可执行文件的大小,则应移除下列
  33. // 不需要的特定初始化例程
  34. // 更改用于存储设置的注册表项
  35. // TODO: 应适当修改该字符串,
  36. // 例如修改为公司或组织名
  37. // SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
  38. CPPExplorerDlg dlg;
  39. m_pMainWnd = &dlg;
  40. INT_PTR nResponse = dlg.DoModal();
  41. if (nResponse == IDOK)
  42. {
  43. // TODO: 在此放置处理何时用“确定”来关闭
  44. //对话框的代码
  45. }
  46. else if (nResponse == IDCANCEL)
  47. {
  48. // TODO: 在此放置处理何时用“取消”来关闭
  49. //对话框的代码
  50. }
  51. // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
  52. // 而不是启动应用程序的消息泵。
  53. return FALSE;
  54. }