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

📄 tooltip.h

📁 类似于QQ的聊天工具,分为客户端和服务器端,有共享空间,能发布公告,可传输文件
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -