⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clipboard.h

📁 独特的读写工具,输入文字后按"COPY"键,再把文字删除,再按PASTE键,之前输入的文字就会再次显示
💻 H
字号:
// CClipboard Class// ----------------// Written by David Terracino <davet@lycosemail.com>//// This code is released into the public domain, because// it's silly easy. If you want to use and expand it, go// ahead; fine by me. If you do expand this class's// functionality, please consider sending it back up to// the MFC Programmer's Sourcebook at www.codeguru.com.//// And as always, please give credit where credit is// due. Don't remove my name from the source.#ifndef __CCLIPBOARD_H#define __CCLIPBOARD_Hclass CClipboard{public:	static BOOL GetText (LPSTR lpszBuffer,						 int nBufSize,						 HWND hWnd = NULL);		static BOOL GetTextLength (unsigned long *pnSize,							   HWND hWnd = NULL);		static BOOL SetText (LPSTR lpszBuffer,						 HWND hWND = NULL);};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -