CToolTipCtrl::Popup
使当前工具提示控件显示上次鼠标消息的坐标。
void Popup();
备注
此方法发送 TTM_POPUP 信息,在 Windows SDK所述。
要求
标头: afxcmn.h
此方法在Windows XP和更高版本支持。
此方法的其他要求。Windows Vista 公共控件的生成要求所述。
示例
下面的代码示例显示工具提示窗口。
{
// Display the most recent tooltip.
CToolBarCtrl& m_toolBarCtrl = m_wndToolBar.GetToolBarCtrl();
CToolTipCtrl* m_toolTip = m_toolBarCtrl.GetToolTips();
m_toolTip->Popup();
}