HighColorTab.cpp
上传用户:ahlaser
上传日期:2020-09-06
资源大小:116k
文件大小:2k
源码类别:

Static控件

开发平台:

Visual C++

  1. // HighColorTab.cpp : Defines the class behaviors for the application.
  2. //
  3. ///////////////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "HighColorTab.h"
  6. #include "HighColorTabDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CHighColorTabApp
  14. BEGIN_MESSAGE_MAP(CHighColorTabApp, CWinApp)
  15. //{{AFX_MSG_MAP(CHighColorTabApp)
  16. //}}AFX_MSG
  17. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CHighColorTabApp construction
  21. CHighColorTabApp::CHighColorTabApp()
  22. {
  23. }
  24. /////////////////////////////////////////////////////////////////////////////
  25. // The one and only CHighColorTabApp object
  26. CHighColorTabApp theApp;
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CHighColorTabApp initialization
  29. BOOL CHighColorTabApp::InitInstance()
  30. {
  31. AfxEnableControlContainer();
  32. // Standard initialization
  33. // If you are not using these features and wish to reduce the size
  34. //  of your final executable, you should remove from the following
  35. //  the specific initialization routines you do not need.
  36. #if _MSC_VER < 13
  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 // _MSC_VER >= 13
  43. CHighColorTabDlg dlg;
  44. m_pMainWnd = &dlg;
  45. int nResponse = dlg.DoModal();
  46. if (nResponse == IDOK)
  47. {
  48. }
  49. else if (nResponse == IDCANCEL)
  50. {
  51. }
  52. // Since the dialog has been closed, return FALSE so that we exit the
  53. //  application, rather than start the application's message pump.
  54. return FALSE;
  55. }