📄 stringinfoview.h
字号:
// StringInfoView.h: interface for the CStringInfoView class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STRINGINFOVIEW_H__68FD8816_525E_4636_BBF7_21C699DDF018__INCLUDED_)
#define AFX_STRINGINFOVIEW_H__68FD8816_525E_4636_BBF7_21C699DDF018__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "IInfoView.h"
#include "BaseFunc.h"
class CStringInfoView : public IInfoView
{
public:
CStringInfoView();
virtual ~CStringInfoView();
private:
char m_szStr[_MAX_STRING];
CMyPos m_posShow;
DWORD m_dwColor;
public:
virtual void Show();
public:
static CStringInfoView* CreateNew(char* pszStr, CMyPos posShow, DWORD dwColor);
BOOL Create(char* pszStr, CMyPos posShow, DWORD dwColor);
};
#endif // !defined(AFX_STRINGINFOVIEW_H__68FD8816_525E_4636_BBF7_21C699DDF018__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -