NPenDlg.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // NPenDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "demo.h"
  5. #include "NPenDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CNPenDlg dialog
  13. CNPenDlg::CNPenDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CNPenDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CNPenDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CNPenDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CNPenDlg)
  24. // NOTE: the ClassWizard will add DDX and DDV calls here
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CNPenDlg, CDialog)
  28. //{{AFX_MSG_MAP(CNPenDlg)
  29. ON_NOTIFY(NM_CLICK, IDC_LIST1, OnClickList1)
  30. ON_EN_CHANGE(IDC_Width, OnChangeWidth)
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CNPenDlg message handlers
  35. void CNPenDlg::OnOK() 
  36. {
  37. // TODO: Add extra validation here
  38. CDialog::OnOK();
  39. }
  40. void CNPenDlg::OnButton1() 
  41. {
  42. // TODO: Add your control notification handler code here
  43. }
  44. void CNPenDlg::OnClickList1(NMHDR* pNMHDR, LRESULT* pResult) 
  45. {
  46. // TODO: Add your control notification handler code here
  47. *pResult = 0;
  48. }
  49. void CNPenDlg::OnCheck1() 
  50. {
  51. // TODO: Add your control notification handler code here
  52. }
  53. void CNPenDlg::OnClickTree1(NMHDR* pNMHDR, LRESULT* pResult) 
  54. {
  55. // TODO: Add your control notification handler code here
  56. *pResult = 0;
  57. }
  58. void CNPenDlg::OnSelchangeTab1(NMHDR* pNMHDR, LRESULT* pResult) 
  59. {
  60. // TODO: Add your control notification handler code here
  61. *pResult = 0;
  62. }
  63. void CNPenDlg::OnOutofmemoryAnimate1(NMHDR* pNMHDR, LRESULT* pResult) 
  64. {
  65. // TODO: Add your control notification handler code here
  66. *pResult = 0;
  67. }
  68. void CNPenDlg::OnFieldchangedIpaddress1(NMHDR* pNMHDR, LRESULT* pResult) 
  69. {
  70. // TODO: Add your control notification handler code here
  71. *pResult = 0;
  72. }
  73. void CNPenDlg::OnFieldchangedIpaddress2(NMHDR* pNMHDR, LRESULT* pResult) 
  74. {
  75. // TODO: Add your control notification handler code here
  76. *pResult = 0;
  77. }
  78. void CNPenDlg::OnRadio1() 
  79. {
  80. // TODO: Add your control notification handler code here
  81. }
  82. void CNPenDlg::OnChangeWidth() 
  83. {
  84. // TODO: If this is a RICHEDIT control, the control will not
  85. // send this notification unless you override the CDialog::OnInitDialog()
  86. // function and call CRichEditCtrl().SetEventMask()
  87. // with the ENM_CHANGE flag ORed into the mask.
  88. // TODO: Add your control notification handler code here
  89. }