CButtonST_Demo.cpp
上传用户:yangxun008
上传日期:2008-03-25
资源大小:3863k
文件大小:1k
源码类别:

按钮控件

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "CButtonST_Demo.h"
  3. #include "CButtonST_DemoDlg.h"
  4. #ifdef _DEBUG
  5. #define new DEBUG_NEW
  6. #undef THIS_FILE
  7. static char THIS_FILE[] = __FILE__;
  8. #endif
  9. BEGIN_MESSAGE_MAP(CCButtonST_DemoApp, CWinApp)
  10. //{{AFX_MSG_MAP(CCButtonST_DemoApp)
  11. //}}AFX_MSG
  12. //ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  13. END_MESSAGE_MAP()
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCButtonST_DemoApp construction
  16. CCButtonST_DemoApp::CCButtonST_DemoApp()
  17. {
  18. }
  19. /////////////////////////////////////////////////////////////////////////////
  20. // The one and only CCButtonST_DemoApp object
  21. CCButtonST_DemoApp theApp;
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CCButtonST_DemoApp initialization
  24. BOOL CCButtonST_DemoApp::InitInstance()
  25. {
  26. // Standard initialization
  27. CCButtonST_DemoDlg dlg;
  28. m_pMainWnd = &dlg;
  29. dlg.DoModal();
  30. return FALSE;
  31. } // End of InitInstance