如果你需要在工具提示中显示标题,通常是通过在显示的文本中包含标题的方式来实现,而不是通过专门的方法。你可以在调用 AddTool 方法时,将标题和内容合并到文本中。
示例:
CString tooltipText = _T("Title: This is the content");
m_toolTipCtrl.AddTool(GetDlgItem(IDC_MY_CONTROL), tooltipText);
在这个示例中,tooltipText 包含标题和内容,通过 AddTool 方法将其关联到相应的控件上。
转载请注明出处:http://www.zyzy.cn/article/detail/22791/MFC/CToolTipCtrl