SimpleTextTransferDlg.h
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // SimpleTextTransferDlg.h : header file
  2. //
  3. #pragma once
  4. #include "afxwin.h"
  5. // CSimpleTextTransferDlg dialog
  6. class CSimpleTextTransferDlg : public CDialog
  7. {
  8. // Construction
  9. public:
  10. CSimpleTextTransferDlg(CWnd* pParent = NULL); // standard constructor
  11. // Dialog Data
  12. enum { IDD = IDD_SIMPLETEXTTRANSFER_DIALOG };
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  15. // Implementation
  16. protected:
  17. HICON m_hIcon;
  18. // Generated message map functions
  19. virtual BOOL OnInitDialog();
  20. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  21. afx_msg void OnPaint();
  22. afx_msg HCURSOR OnQueryDragIcon();
  23. DECLARE_MESSAGE_MAP()
  24. public:
  25. afx_msg void OnBnClickedBtncopy();
  26. afx_msg void OnBnClickedBtncut();
  27. afx_msg void OnBnClickedBtnpaste();
  28. CEdit m_edtToClipboard;
  29. CEdit m_edtFromClipboard;
  30. };