SDI.cpp
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // SDI.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "SDI.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSDIApp
  13. BEGIN_MESSAGE_MAP(CSDIApp, CWinApp)
  14. //{{AFX_MSG_MAP(CSDIApp)
  15. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CSDIApp construction
  22. CSDIApp::CSDIApp()
  23. {
  24. }
  25. CSDIApp::~CSDIApp()
  26. {
  27. }
  28. /////////////////////////////////////////////////////////////////////////////
  29. // The one and only CSDIApp object
  30. CSDIApp theApp;
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CSDIApp initialization
  33. BOOL CSDIApp::InitInstance()
  34. {
  35. srand( (unsigned)time( NULL ) );
  36. InitCommonControls();
  37. AfxEnableControlContainer();
  38. // Change the registry key under which our settings are stored.
  39. // TODO: You should modify this string to be something appropriate
  40. // such as the name of your company or organization.
  41. SetRegistryKey( _T("Foss") );
  42. // To create the main window, this code creates a new frame window
  43. // object and then sets it as the application's main window object.
  44. CMainFrame* pFrame = new CMainFrame;
  45. m_pMainWnd = pFrame;
  46. // create and load the frame with its resources
  47. pFrame->LoadFrame(IDR_MAINFRAME,
  48. WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE, NULL,
  49. NULL);
  50. // // The one and only window has been initialized, so show and update it.
  51. // pFrame->ShowWindow(SW_SHOW);
  52. // pFrame->UpdateWindow();
  53. // window placement persistence
  54. pFrame->ActivateFrame( SW_SHOW );
  55. return TRUE;
  56. }
  57. int CSDIApp::ExitInstance()
  58. {
  59. return CWinApp::ExitInstance();
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CSDIApp message handlers
  63. // App command to run the dialog
  64. void CSDIApp::OnAppAbout()
  65. {
  66. #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  67. VERIFY( ProfUISAbout() );
  68. #endif // #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  69. }
  70. /////////////////////////////////////////////////////////////////////////////
  71. // CSDIApp message handlers