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

界面编程

开发平台:

Visual C++

  1. // FunnyBars.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "FunnyBars.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. // CFunnyBarsApp
  13. BEGIN_MESSAGE_MAP(CFunnyBarsApp, CWinApp)
  14. //{{AFX_MSG_MAP(CFunnyBarsApp)
  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. // CFunnyBarsApp construction
  22. CFunnyBarsApp::CFunnyBarsApp()
  23. {
  24. // TODO: add construction code here,
  25. // Place all significant initialization in InitInstance
  26. }
  27. /////////////////////////////////////////////////////////////////////////////
  28. // The one and only CFunnyBarsApp object
  29. CFunnyBarsApp theApp;
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CFunnyBarsApp initialization
  32. BOOL CFunnyBarsApp::InitInstance()
  33. {
  34. InitCommonControls();
  35. AfxEnableControlContainer();
  36. #if _MFC_VER < 0x700
  37. #ifdef _AFXDLL
  38. Enable3dControls(); // Call this when using MFC in a shared DLL
  39. #else
  40. Enable3dControlsStatic(); // Call this when linking to MFC statically
  41. #endif
  42. #endif
  43. SetRegistryKey( _T("Foss") );
  44. CMainFrame* pFrame = new CMainFrame;
  45. m_pMainWnd = pFrame;
  46. pFrame->LoadFrame(IDR_MAINFRAME,
  47. WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE, NULL,
  48. NULL);
  49. pFrame->ActivateFrame( SW_SHOW );
  50. //  ::SetActiveWindow( NULL );
  51. //  pFrame->SetActiveWindow();
  52. return TRUE;
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CFunnyBarsApp message handlers
  56. // App command to run the dialog
  57. void CFunnyBarsApp::OnAppAbout()
  58. {
  59. #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  60. VERIFY( ProfUISAbout() );
  61. #endif // #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CFunnyBarsApp message handlers