NPenDlg.cpp
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:3k
源码类别:
书籍源码
开发平台:
Visual C++
- // NPenDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "demo.h"
- #include "NPenDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CNPenDlg dialog
- CNPenDlg::CNPenDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CNPenDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CNPenDlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void CNPenDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CNPenDlg)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CNPenDlg, CDialog)
- //{{AFX_MSG_MAP(CNPenDlg)
- ON_NOTIFY(NM_CLICK, IDC_LIST1, OnClickList1)
- ON_EN_CHANGE(IDC_Width, OnChangeWidth)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CNPenDlg message handlers
- void CNPenDlg::OnOK()
- {
- // TODO: Add extra validation here
- CDialog::OnOK();
- }
- void CNPenDlg::OnButton1()
- {
- // TODO: Add your control notification handler code here
- }
- void CNPenDlg::OnClickList1(NMHDR* pNMHDR, LRESULT* pResult)
- {
- // TODO: Add your control notification handler code here
- *pResult = 0;
- }
- void CNPenDlg::OnCheck1()
- {
- // TODO: Add your control notification handler code here
- }
- void CNPenDlg::OnClickTree1(NMHDR* pNMHDR, LRESULT* pResult)
- {
- // TODO: Add your control notification handler code here
- *pResult = 0;
- }
- void CNPenDlg::OnSelchangeTab1(NMHDR* pNMHDR, LRESULT* pResult)
- {
- // TODO: Add your control notification handler code here
- *pResult = 0;
- }
- void CNPenDlg::OnOutofmemoryAnimate1(NMHDR* pNMHDR, LRESULT* pResult)
- {
- // TODO: Add your control notification handler code here
- *pResult = 0;
- }
- void CNPenDlg::OnFieldchangedIpaddress1(NMHDR* pNMHDR, LRESULT* pResult)
- {
- // TODO: Add your control notification handler code here
- *pResult = 0;
- }
- void CNPenDlg::OnFieldchangedIpaddress2(NMHDR* pNMHDR, LRESULT* pResult)
- {
- // TODO: Add your control notification handler code here
- *pResult = 0;
- }
- void CNPenDlg::OnRadio1()
- {
- // TODO: Add your control notification handler code here
- }
- void CNPenDlg::OnChangeWidth()
- {
- // TODO: If this is a RICHEDIT control, the control will not
- // send this notification unless you override the CDialog::OnInitDialog()
- // function and call CRichEditCtrl().SetEventMask()
- // with the ENM_CHANGE flag ORed into the mask.
- // TODO: Add your control notification handler code here
- }