我想使用原生的Windows工具提示控件(纯Win32 API,没有MFC的东西)。
我阅读了文档,似乎我必须发送一条TTM_ADDTOOL消息来将工具绑定到工具提示控件。只有在那之后才能发送TTM_TRACKACTIVATE& TTM_TRACKPOSITION显示工具提示。
但我想在任何我想要的地方显示工具提示。例如,当鼠标悬停在我窗口的某个区域上时。这个区域不是Windows眼中的工具,它只是我窗口中的一个区域。
也许我可以将窗口绑定到工具提示控件,但是,这是不是意味着我必须将我创建的每个窗口绑定到工具提示控件?
是否有一个简单的解决方案,以便我不必为每个窗口发送TTM_ADDTOOL消息?
我实际上已经编写了一些代码,但工具提示似乎没有出现。安德斯的回答实际上解决了一些问题。在我查看代码之后,我就让它工作了。
如果有人想知道它是如何工作的:
HWND toolTipWnd = ::CreateWindowExW(WS_EX_TOPMOST,
TOOLTIPS_CLASSW,0,WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
CW_USEDEFAULT, CW_USEDEFAULT,CW_USEDEFAULT,CW_USEDEFAULT,
0,0,appHandle,0);
TOOLINFOW ti = {};
ti.cbSize = sizeof(TOOLINFOW);
ti.uFlags = TTF_ABSOLUTE | TTF_IDISHWND /* | TTF_TRACK */; // Don't specify TTF_TRACK here. Otherwise the tooltip won't show up.
ti.hwnd = toolTipWnd; // By doing this, you don't have to create another window.
ti.hinst = NULL;
ti.uId = (UINT)toolTipWnd;
ti.lpszText = L"";
::SendMessageW(toolTipWnd, TTM_ADDTOOLW, 0, (LPARAM)&ti);
::SendMessageW(toolTipWnd, TTM_SETMAXTIPWIDTH,0, (LPARAM)350);
这将创建一个工具提示窗口,该窗口未绑定到任何其他窗口。 因此,当您想要显示工具提示时(例如,在响应WM_MOUSEHOVER消息时),请调用此方法:
TOOLINFOW ti = {};
ti.cbSize = sizeof(TOOLINFOW);
ti.hwnd = toolTipWnd;
ti.uId = (UINT)toolTipWnd;
ti.lpszText = L"Sample Tip Text";
::SendMessageW(toolTipWnd,TTM_UPDATETIPTEXTW,0,(LPARAM)&ti); // This will update the tooltip content.
::SendMessageW(toolTipWnd,TTM_TRACKACTIVATE,(WPARAM)TRUE,(LPARAM)&ti);
::SendMessageW(toolTipWnd, TTM_TRACKPOSITION,0,(LPARAM)MAKELONG(x,y)); // Update the position of your tooltip. Screen coordinate.
//::SendMessageW(toolTipWnd,TTM_POPUP,0,0); // TTM_POPUP not working.. Don't know why.
答案 0 :(得分:5)
你需要至少调用一次TTM_ADDTOOL,你不能在没有AFAIK的情况下调用TTM_SETTOOLINFO或获取TTN_GETDISPINFO。
如果您的目标是XP +,您可以使用TTM_POPUP在任何位置随时显示提示(但您需要自己处理初始延迟,除非您需要跟踪工具提示)
通常,您调用TTM_ADDTOOL并将其与矩形(TOOLINFO.rect)或子窗口关联,或者您可以将文本设置为LPSTR_TEXTCALLBACK并在所有内容都有提示的情况下处理TTN_GETDISPINFO。 MSDN有一些sample code你应该看一下......
答案 1 :(得分:0)
添加Windows 10(Visual Studio 2015,Win32控制台应用程序)
#include "Commctrl.h"
#pragma comment (lib,"comctl32.lib")
#pragma comment(linker,"\"/manifestdependency:type='win32' \
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
TOOLINFOW ti = {};
ti.cbSize = sizeof(TOOLINFOW);
ti.uFlags = TTF_ABSOLUTE | TTF_IDISHWND | TTF_TRACK ; // WITH TTF_TRACK! Otherwise the tooltip doesn't follow TTM_TRACKPOSITION message!
ti.hwnd = toolTipWnd;
ti.hinst = 0;
ti.uId = (UINT)toolTipWnd;
ti.lpszText = L"";
LRESULT result;
int error;
if (!SendMessageW(toolTipWnd, TTM_ADDTOOLW, 0, (LPARAM)&ti)) {
MessageBox(NULL, L"Couldn't create the ToolTip control.", L"Error", MB_OK);
error = 0;
error = GetLastError();
}
if (!SendMessageW(toolTipWnd, TTM_SETMAXTIPWIDTH, 0, (LPARAM)350)) {
MessageBox(NULL, L"Couldn't create the ToolTip control.", L"Error", MB_OK);
error = 0;
error = GetLastError();
}