ctext.hpp
来自「bt848,bt878 a采集卡的探测」· HPP 代码 · 共 19 行
HPP
19 行
// Static text
#ifndef _CTEXT_HPP
#define _CTEXT_HPP
#include "CWnd.hpp"
#include "CString.hpp"
class CText : public CWnd {
public:
// Constructors
CText() {}
CText(CWnd& father,int nID) : CWnd(father,nID) {}
// This seems to be very useful
CText& operator=(LPTSTR txt) { SetText(txt); return *this; }
CText& operator=(CString& txt) { SetText(txt); return *this; }
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?