CMNCTRL2.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // CmnCtrl2.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "CmnCtrl2.h"
  14. #include "propsht.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CCmnCtrl2App
  22. BEGIN_MESSAGE_MAP(CCmnCtrl2App, CWinApp)
  23. //{{AFX_MSG_MAP(CCmnCtrl2App)
  24. //}}AFX_MSG
  25. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CCmnCtrl2App construction
  29. CCmnCtrl2App::CCmnCtrl2App()
  30. {
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CCmnCtrl2App object
  34. CCmnCtrl2App theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CCmnCtrl2App initialization
  37. BOOL CCmnCtrl2App::InitInstance()
  38. {
  39. AfxEnableControlContainer();
  40. // Standard initialization
  41. CAllControlsSheet   allcontrolssheet(_T("Common Controls Sample"));
  42. m_pMainWnd = &allcontrolssheet;
  43. allcontrolssheet.DoModal();
  44. return FALSE;
  45. }