tooltip.h
来自「类似于QQ的聊天工具,分为客户端和服务器端,有共享空间,能发布公告,可传输文件」· C头文件 代码 · 共 26 行
H
26 行
// ToolTip.h: interface for the CToolTip class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TOOLTIP_H__095B90BB_B473_41AB_BC67_D89BA58712BF__INCLUDED_)
#define AFX_TOOLTIP_H__095B90BB_B473_41AB_BC67_D89BA58712BF__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CToolTip
{
public:
CToolTip();
CToolTipCtrl& GetToolTip();
void CreateToolTip(CWnd* pParantWnd);
void AddToolTip(LPCTSTR lpszText,CWnd* pWnd, UINT nIDTool = 0);
virtual ~CToolTip();
private:
CToolTipCtrl m_ttToolTip;
};
#endif // !defined(AFX_TOOLTIP_H__095B90BB_B473_41AB_BC67_D89BA58712BF__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?