热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

MFC中使用用户剪贴板

代码逻辑:拷贝功能:1.从编辑控件中获取文本。2.打开并清空剪贴板。(OpenClipboard,EmptyClipboard)3.创建一个全局缓冲区。(GlobalAlloc)4

代码逻辑:
拷贝功能:


1.从编辑控件中获取文本。
2.打开并清空剪贴板。(OpenClipboard,EmptyClipboard)

3.创建一个全局缓冲区。(GlobalAlloc)
4.锁定缓冲区。(GlobalLock)
5.将文本拷贝到缓冲区。(strcpy)

6.解锁缓冲区。(GlobalUnlock)
7.将缓冲区数据设置到剪贴板(SetClipboradData)

8.关闭剪贴板(CloseClipboard)
剪切功能:
1.拷贝(参考拷贝功能)
2.删除文本。

粘贴功能:

1.检查并打开剪贴板.(IsClipboardFormatAvailable,OpenClipboard)

2.获得剪贴板数据.(GetClipboardData)
3.将数据设置到编辑框.

4.关闭剪贴板.(CloseClipboard)

按照上面的代码逻辑顺序主要的代码如下(稍后会提供整个工程文件的下载)

>免积分下载地址:http://download.csdn.net/detail/zy_dreamer/5319129

基于对话框的程序Dialog类如下:

 




[cpp] view plaincopy


  1. class="keyword">class CMFCClipboardDlg :  class="keyword">public CDialog  

  2. {  

  3. class="comment">// Construction  

  4. class="keyword">public:  

  5. class="alt">    CMFCClipboardDlg(CWnd* pParent = NULL);  class="comment">// standard constructor  

  6.   

  7. class="comment">// Dialog Data  

  8.      class="keyword">enum { IDD = IDD_MFCCLIPBOARD_DIALOG };  

  9.   

  10.      class="keyword">protected:  

  11.      class="keyword">virtual  class="keyword">void DoDataExchange(CDataExchange* pDX);     class="comment">// DDX/DDV support  

  12.   

  13.   

  14. class="comment">// Implementation  

  15. class="keyword">protected:  

  16.      class="datatypes">HICON m_hIcon;  

  17.   

  18.      class="comment">// Generated message map functions  

  19.      class="keyword">virtual  class="datatypes">BOOL OnInitDialog();  

  20.     afx_msg  class="keyword">void OnPaint();  

  21.     afx_msg HCURSOR OnQueryDragIcon();  

  22.     DECLARE_MESSAGE_MAP()  

  23. class="keyword">public:  

  24.     afx_msg  class="keyword">void OnBnClickedCopyButton();  

  25.     afx_msg void OnBnClickedCutButton();  

  26.     afx_msg  class="keyword">void OnBnClickedPasteButton();  

  27. class="keyword">private:  

  28.     CEdit m_editTarget;  

  29. class="alt">    CEdit m_editSource;  

  30. };  

主要功能:

拷贝:

 




[cpp] view plaincopy


  1. class="keyword">void CMFCClipboardDlg::OnBnClickedCopyButton()  

  2. {  

  3.      class="comment">/////////////////////////////////////////////////////////////////////////  

  4.      class="comment">// 1. Get text from edit control.  

  5.      class="comment">//   

  6.   

  7. class="alt">    CString strData;  

  8.     m_editSource.GetWindowTextW(strData);  

  9.   

  10.      class="datatypes">int len = strData.GetLength();  

  11.   

  12.      class="keyword">if (len <= 0)  

  13.          class="keyword">return;  

  14.   

  15.   

  16.      class="comment">/////////////////////////////////////////////////////////////////////////  

  17.      class="comment">// 2. Open and empty clipboard. (OpenClipboard, EmptyClipboard)  

  18.      class="comment">//   

  19.   

  20.      class="keyword">if (!OpenClipboard())  

  21.          class="keyword">return;  

  22.   

  23. class="alt">    EmptyClipboard();   

  24.   

  25.   

  26.      class="comment">/////////////////////////////////////////////////////////////////////////  

  27.      class="comment">// 3. Create global buffer. (GlobalAlloc)  

  28.      class="comment">//   

  29.   

  30.      class="datatypes">HGLOBAL hglbCopy = GlobalAlloc(GMEM_MOVEABLE, (len + 1));  

  31.       

  32.      class="keyword">if (hglbCopy == NULL)   

  33.     {   

  34.         CloseClipboard();   

  35.          class="keyword">return;   

  36.     }  

  37.   

  38.   

  39.      class="comment">/////////////////////////////////////////////////////////////////////////  

  40.      class="comment">// 4. Lock the buffer. (GlobalLock)  

  41.      class="comment">//   

  42.   

  43.      class="datatypes">char* lptstrCopy = ( class="datatypes">char*)GlobalLock(hglbCopy);   

  44.   

  45.   

  46.      class="comment">/////////////////////////////////////////////////////////////////////////  

  47.      class="comment">// 5. Copy text to the buffer. (strcpy)  

  48.      class="comment">//   

  49.   

  50.     strcpy(lptstrCopy, (CStringA)strData);  

  51.   

  52.   

  53.      class="comment">/////////////////////////////////////////////////////////////////////////  

  54.      class="comment">// 6. Unlock the buffer. (GlobalUnlock)  

  55.      class="comment">//   

  56.   

  57. class="alt">    GlobalUnlock(hglbCopy);   

  58.   

  59.   

  60.      class="comment">/////////////////////////////////////////////////////////////////////////  

  61.      class="comment">// 7. Set buffer data to clipboard. (SetClipboardData)  

  62.      class="comment">//   

  63.   

  64.     SetClipboardData(CF_TEXT, hglbCopy);   

  65.   

  66.   

  67.      class="comment">/////////////////////////////////////////////////////////////////////////  

  68.      class="comment">// 8. Close clipboard. (CloseClipboard)  

  69.      class="comment">//   

  70.   

  71. class="alt">    CloseClipboard();     

  72. }  

剪贴:

 




[cpp] view plaincopy


  1. class="keyword">void CMFCClipboardDlg::OnBnClickedCutButton()  

  2. {  

  3.      class="comment">/////////////////////////////////////////////////////////////////////////  

  4.      class="comment">// 1. Copy  

  5.      class="comment">//   

  6.   

  7. class="alt">    OnBnClickedCopyButton();  

  8.   

  9.   

  10.      class="comment">/////////////////////////////////////////////////////////////////////////  

  11.      class="comment">// 2. Clear the text.  

  12.      class="comment">//   

  13.   

  14.     m_editSource.SetWindowTextW(CString( class="string">""));  

  15. }  


粘贴:

 




[cpp] view plaincopy


  1. class="keyword">void CMFCClipboardDlg::OnBnClickedPasteButton()  

  2. {  

  3.      class="comment">/////////////////////////////////////////////////////////////////////////  

  4.      class="comment">// 1. Check and open clipboard. (IsClipboardFormatAvailable,   

  5.      class="comment">// OpenClipboard)  

  6.      class="comment">//   

  7.   

  8.      class="keyword">if (!IsClipboardFormatAvailable(CF_TEXT))   

  9.          class="keyword">return;   

  10.   

  11.      class="keyword">if (!OpenClipboard())   

  12.         return;  

  13.   

  14.   

  15.      class="comment">/////////////////////////////////////////////////////////////////////////  

  16.      class="comment">// 2. Get clipboard data. (GetClipboardData)  

  17.      class="comment">//   

  18.   

  19.      class="datatypes">HGLOBAL hglb = GetClipboardData(CF_TEXT);  

  20.   

  21.   

  22.      class="comment">/////////////////////////////////////////////////////////////////////////  

  23.      class="comment">// 3. Set the data into edit control.  

  24.      class="comment">//   

  25.   

  26.      class="keyword">if (hglb != NULL)   

  27.     {   

  28.         char* lptstr = ( class="datatypes">char*) GlobalLock(hglb);   

  29.          class="keyword">if (lptstr != NULL)   

  30.         {   

  31. class="alt">             class="comment">// Call the application-defined ReplaceSelection   

  32.              class="comment">// function to insert the text and repaint the   

  33. class="alt">             class="comment">// window.   

  34.             CString displayData = CString(lptstr);  

  35. class="alt">            m_editTarget.SetWindowTextW(displayData);  

  36.             GlobalUnlock(hglb);   

  37. class="alt">        }   

  38.     }   

  39.   

  40.   

  41.      class="comment">/////////////////////////////////////////////////////////////////////////  

  42.      class="comment">// 4. Close clipboard. (CloseClipboard)  

  43.      class="comment">//   

  44.   

  45. class="alt">    CloseClipboard();   

  46.   

  47.      class="keyword">return;   

  48. }  

程序效果如下:
bubuko.com,布布扣

MFC中使用用户剪贴板,布布扣,bubuko.com


推荐阅读
  • 本文旨在提供一套高效的面试方法,帮助企业在短时间内找到合适的产品经理。虽然观点较为直接,但其方法已被实践证明有效,尤其适用于初创公司和新项目的需求。 ... [详细]
  • C#设计模式学习笔记:观察者模式解析
    本文将探讨观察者模式的基本概念、应用场景及其在C#中的实现方法。通过借鉴《Head First Design Patterns》和维基百科等资源,详细介绍该模式的工作原理,并提供具体代码示例。 ... [详细]
  • 本文详细介绍超文本标记语言(HTML)的基本概念与语法结构。HTML是构建网页的核心语言,通过标记标签描述页面内容,帮助开发者创建结构化、语义化的Web页面。 ... [详细]
  • 哈密顿回路问题旨在寻找一个简单回路,该回路包含图中的每个顶点。本文将介绍如何判断给定的路径是否构成哈密顿回路。 ... [详细]
  • 本文探讨了使用C#在SQL Server和Access数据库中批量插入多条数据的性能差异。通过具体代码示例,详细分析了两种数据库的执行效率,并提供了优化建议。 ... [详细]
  • 反向投影技术主要用于在大型输入图像中定位特定的小型模板图像。通过直方图对比,它能够识别出最匹配的区域或点,从而确定模板图像在输入图像中的位置。 ... [详细]
  • 本问题探讨了在特定条件下排列儿童队伍的方法数量。题目要求计算满足条件的队伍排列总数,并使用递推算法和大数处理技术来解决这一问题。 ... [详细]
  • 本文详细探讨了JavaScript中的作用域链和闭包机制,解释了它们的工作原理及其在实际编程中的应用。通过具体的代码示例,帮助读者更好地理解和掌握这些概念。 ... [详细]
  • Python 内存管理机制详解
    本文深入探讨了Python的内存管理机制,涵盖了垃圾回收、引用计数和内存池机制。通过具体示例和专业解释,帮助读者理解Python如何高效地管理和释放内存资源。 ... [详细]
  • 如何清除Chrome浏览器地址栏的特定历史记录
    在使用Chrome浏览器时,你可能会发现地址栏保存了大量浏览记录。有时你可能希望删除某些特定的历史记录而不影响其他数据。本文将详细介绍如何单独删除地址栏中的特定记录以及批量清除所有历史记录的方法。 ... [详细]
  • 如何将本地Docker镜像推送到阿里云容器镜像服务
    本文详细介绍将本地Docker镜像上传至阿里云容器镜像服务的步骤,包括登录、查看镜像列表、推送镜像以及确认上传结果。通过本文,您将掌握如何高效地管理Docker镜像并将其存储在阿里云的镜像仓库中。 ... [详细]
  • 查找最小值的操作是很简单的,只需要从根节点递归的遍历到左子树节点即可。当遍历到节点的左孩子为NULL时,则这个节点就是树的最小值。上面的树中,从根节点20开始,递归遍历左子 ... [详细]
  • 在使用STM32Cube进行定时器配置时,有时会遇到延时不准的问题。本文探讨了可能导致延时不准确的原因,并提供了解决方法和预防措施。 ... [详细]
  • 深入理解Lucene搜索机制
    本文旨在帮助读者全面掌握Lucene搜索的编写步骤、核心API及其应用。通过详细解析Lucene的基本查询和查询解析器的使用方法,结合架构图和代码示例,带领读者深入了解Lucene搜索的工作流程。 ... [详细]
  • 在项目部署后,Node.js 进程可能会遇到不可预见的错误并崩溃。为了及时通知开发人员进行问题排查,我们可以利用 nodemailer 插件来发送邮件提醒。本文将详细介绍如何配置和使用 nodemailer 实现这一功能。 ... [详细]
author-avatar
HHH_YYYY
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有