DialogForToolBar.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // DialogForToolBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "DialogBar.h"
  5. #include "DialogForToolBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDialogForToolBar dialog
  13. CDialogForToolBar::CDialogForToolBar(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDialogForToolBar::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDialogForToolBar)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CDialogForToolBar::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CDialogForToolBar)
  24. // NOTE: the ClassWizard will add DDX and DDV calls here
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CDialogForToolBar, CDialog)
  28. //{{AFX_MSG_MAP(CDialogForToolBar)
  29. // ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
  30. //ON_BN_CLICKED(
  31. // ON_COMMAND(IDC_BUTTON3, OnButton3)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CDialogForToolBar message handlers
  36. //DEL void CDialogForToolBar::OnButton1() 
  37. //DEL {
  38. //DEL AfxMessageBox("你好");
  39. //DEL }
  40. //DEL void CDialogForToolBar::OnButton2() 
  41. //DEL {
  42. //DEL  // TODO: Add your control notification handler code here
  43. //DEL 
  44. //DEL }
  45. //DEL void CDialogForToolBar::OnButton3() 
  46. //DEL {
  47. //DEL  // TODO: Add your control notification handler code here
  48. //DEL 
  49. //DEL }