Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.4 KiB

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. // BindingPg.cpp : implementation file
  8. //
  9. #include "stdafx.h"
  10. #include "wmitest.h"
  11. #include "BindingPg.h"
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CBindingPg property page
  19. IMPLEMENT_DYNCREATE(CBindingPg, CPropertyPage)
  20. CBindingPg::CBindingPg() : CPropertyPage(CBindingPg::IDD)
  21. {
  22. //{{AFX_DATA_INIT(CBindingPg)
  23. // NOTE: the ClassWizard will add member initialization here
  24. //}}AFX_DATA_INIT
  25. }
  26. CBindingPg::~CBindingPg()
  27. {
  28. }
  29. void CBindingPg::DoDataExchange(CDataExchange* pDX)
  30. {
  31. CPropertyPage::DoDataExchange(pDX);
  32. //{{AFX_DATA_MAP(CBindingPg)
  33. DDX_Control(pDX, IDC_BINDINGS, m_ctlBindings);
  34. //}}AFX_DATA_MAP
  35. }
  36. BEGIN_MESSAGE_MAP(CBindingPg, CPropertyPage)
  37. //{{AFX_MSG_MAP(CBindingPg)
  38. ON_BN_CLICKED(IDC_ADD, OnAdd)
  39. ON_BN_CLICKED(IDC_DELETE, OnDelete)
  40. ON_BN_CLICKED(IDC_MODIFY, OnModify)
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CBindingPg message handlers
  45. void CBindingPg::OnAdd()
  46. {
  47. // TODO: Add your control notification handler code here
  48. }
  49. void CBindingPg::OnDelete()
  50. {
  51. // TODO: Add your control notification handler code here
  52. }
  53. void CBindingPg::OnModify()
  54. {
  55. // TODO: Add your control notification handler code here
  56. }