?? clipboard.h
字號(hào):
// 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_H
class 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -