CColorStaticST_demo.cpp
上传用户:fxzxgm
上传日期:2007-01-02
资源大小:99k
文件大小:2k
源码类别:

Static控件

开发平台:

Visual C++

  1. // CColorStaticST_demo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "CColorStaticST_demo.h"
  5. #include "CColorStaticST_demoDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCColorStaticST_demoApp
  13. BEGIN_MESSAGE_MAP(CCColorStaticST_demoApp, CWinApp)
  14. //{{AFX_MSG_MAP(CCColorStaticST_demoApp)
  15. //}}AFX_MSG
  16. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  17. END_MESSAGE_MAP()
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CCColorStaticST_demoApp construction
  20. CCColorStaticST_demoApp::CCColorStaticST_demoApp()
  21. {
  22. }
  23. /////////////////////////////////////////////////////////////////////////////
  24. // The one and only CCColorStaticST_demoApp object
  25. CCColorStaticST_demoApp theApp;
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CCColorStaticST_demoApp initialization
  28. BOOL CCColorStaticST_demoApp::InitInstance()
  29. {
  30. // Standard initialization
  31. #ifdef _AFXDLL
  32. Enable3dControls(); // Call this when using MFC in a shared DLL
  33. #else
  34. Enable3dControlsStatic(); // Call this when linking to MFC statically
  35. #endif
  36. CCColorStaticST_demoDlg dlg;
  37. m_pMainWnd = &dlg;
  38. int nResponse = dlg.DoModal();
  39. if (nResponse == IDOK)
  40. {
  41. }
  42. else if (nResponse == IDCANCEL)
  43. {
  44. }
  45. // Since the dialog has been closed, return FALSE so that we exit the
  46. //  application, rather than start the application's message pump.
  47. return FALSE;
  48. }