Button.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // Button.cpp : Defines the class behaviors for the application.
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. //
  21. //////////////////////////////////////////////////////////////////////
  22. #include "stdafx.h"
  23. #include "Button.h"
  24. #include "ButtonPage.h"
  25. #include "MarkupPage.h"
  26. #ifdef _DEBUG
  27. #define new DEBUG_NEW
  28. #undef THIS_FILE
  29. static char THIS_FILE[] = __FILE__;
  30. #endif
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CButtonApp
  33. BEGIN_MESSAGE_MAP(CButtonApp, CWinApp)
  34. //{{AFX_MSG_MAP(CButtonApp)
  35. // NOTE - the ClassWizard will add and remove mapping macros here.
  36. //    DO NOT EDIT what you see in these blocks of generated code!
  37. //}}AFX_MSG
  38. //ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CButtonApp construction
  42. CButtonApp::CButtonApp()
  43. {
  44. // TODO: add construction code here,
  45. // Place all significant initialization in InitInstance
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // The one and only CButtonApp object
  49. CButtonApp theApp;
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CButtonApp initialization
  52. BOOL CButtonApp::InitInstance()
  53. {
  54. AfxEnableControlContainer();
  55. CXTPWinDwmWrapper().SetProcessDPIAware();
  56. // Standard initialization
  57. // If you are not using these features and wish to reduce the size
  58. //  of your final executable, you should remove from the following
  59. //  the specific initialization routines you do not need.
  60. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  61. #ifdef _AFXDLL
  62. Enable3dControls();         // Call this when using MFC in a shared DLL
  63. #else
  64. Enable3dControlsStatic();   // Call this when linking to MFC statically
  65. #endif
  66. #endif // MFC 6.0 or earlier
  67. // Change the registry key under which our settings are stored.
  68. // TODO: You should modify this string to be something appropriate
  69. // such as the name of your company or organization.
  70. SetRegistryKey(_T("Codejock Software Sample Applications"));
  71. CXTResizePropertySheet dlg(AFX_IDS_APP_TITLE, 0, 0, xtResizeNoVertical);
  72. dlg.m_psh.dwFlags |= PSH_NOAPPLYNOW;
  73. CButtonPage pageButtons;
  74. dlg.AddPage(&pageButtons);
  75. #ifdef _XTP_INCLUDE_MARKUP
  76. CMarkupPage pageMarkup;
  77. dlg.AddPage(&pageMarkup);
  78. #endif
  79. m_pMainWnd = &dlg;
  80. int nResponse = (int)dlg.DoModal();
  81. if (nResponse == IDOK)
  82. {
  83. // TODO: Place code here to handle when the dialog is
  84. //  dismissed with OK
  85. }
  86. else if (nResponse == IDCANCEL)
  87. {
  88. // TODO: Place code here to handle when the dialog is
  89. //  dismissed with Cancel
  90. }
  91. // Since the dialog has been closed, return FALSE so that we exit the
  92. //  application, rather than start the application's message pump.
  93. return FALSE;
  94. }