WeiXinBtn.cpp
上传用户:nwfangbao
上传日期:2022-08-05
资源大小:24k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // WeiXinBtn.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Test.h"
  5. #include "WeiXinBtn.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWeiXinBtn
  13. CWeiXinBtn::CWeiXinBtn()
  14. {
  15. }
  16. CWeiXinBtn::~CWeiXinBtn()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CWeiXinBtn, CButton)
  20. //{{AFX_MSG_MAP(CWeiXinBtn)
  21. ON_WM_MOUSEMOVE()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CWeiXinBtn message handlers
  26. void CWeiXinBtn::OnMouseMove(UINT nFlags, CPoint point) 
  27. {
  28. // TODO: Add your message handler code here and/or call default
  29. ShowWindow(SW_HIDE);
  30. m_pBtn->ShowWindow(SW_SHOW);
  31. CButton::OnMouseMove(nFlags, point);
  32. }