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

界面编程

开发平台:

Visual C++

  1. // DialogTooBar.cpp: implementation of the CDialogTooBar class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "DialogBar.h"
  6. #include "DialogTooBar.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CDialogTooBar::CDialogTooBar()
  16. {
  17. }
  18. CDialogTooBar::~CDialogTooBar()
  19. {
  20. }
  21. BEGIN_MESSAGE_MAP(CDialogTooBar, CDialogBar)
  22.     //{{AFX_MSG_MAP(CTransitionDlg)
  23.     ON_BN_CLICKED(IDC_BUTTON4,OnButton2)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. void CDialogTooBar::OnButton2() 
  27. {
  28. AfxMessageBox("dddddddddd");
  29. // TODO: Add your control notification handler code here
  30. }