youDlg.cpp
上传用户:shixing_sh
上传日期:2021-10-02
资源大小:3629k
文件大小:2k
源码类别:

工具条

开发平台:

Visual C++

  1. // youDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TitleBar.h"
  5. #include "youDlg.h"
  6. #include "TitleBarDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CyouDlg dialog
  14. CyouDlg::CyouDlg(CWnd* pParent /*=NULL*/)
  15. : CTitleBarDlg(pParent)
  16. {
  17. //{{AFX_DATA_INIT(CyouDlg)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. void CyouDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CyouDlg)
  25. // NOTE: the ClassWizard will add DDX and DDV calls here
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CyouDlg, CDialog)
  29. //{{AFX_MSG_MAP(CyouDlg)
  30. ON_WM_NCLBUTTONDOWN()
  31. ON_WM_NCMOUSEMOVE()
  32. ON_WM_SYSCOMMAND()
  33. ON_WM_SIZE()
  34. ON_BN_CLICKED(IDC_BUTTON5, OnButton5)
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CyouDlg message handlers
  39. void CyouDlg::OnButton5() 
  40. {
  41. // TODO: Add your control notification handler code here
  42. CDialog::OnCancel();
  43. }
  44. void CyouDlg::OnNcLButtonDown(UINT nHitTest, CPoint point)
  45. {
  46. CTitleBarDlg::OnNcLButtonDown(nHitTest, point);
  47. }
  48. void CyouDlg::OnNcMouseMove(UINT nHitTest, CPoint point) 
  49. {
  50. CTitleBarDlg::OnNcMouseMove(nHitTest, point); 
  51. }
  52. void CyouDlg::OnSize(UINT nType, int cx, int cy) 
  53. {
  54. CTitleBarDlg::OnSize(nType, cx, cy); 
  55. }
  56. void CyouDlg::OnSysCommand(UINT nID, LPARAM lParam)
  57. {
  58. CTitleBarDlg::OnSysCommand(nID, lParam);
  59. }