CWnd::CancelToolTips
如果工具提示当前显示,则调用此成员函数从屏幕上移除工具提示。
static void PASCAL CancelToolTips(
BOOL bKeys = FALSE
);
参数
- bKeys
取消工具提示的TRUE,当按下了键并将状态栏文本为默认值;否则 FALSE。
备注
备注
使用此成员函数没有对代码管理工具提示的效果。它只会影响 CWnd::EnableToolTips管理工具提示控件。
示例
// In this example, tool tips were set up to
// pop up when the user moves the mouse
// over this edit control.
// If the mouse is moved to the upper left-hand
// corner, the tool tip would disappear because of
// calling CancelToolTips.
void CMyEdit::OnMouseMove(UINT nFlags, CPoint point)
{
CRect corner(0, 0, 10, 10);
if (corner.PtInRect(point))
CancelToolTips();
CEdit::OnMouseMove(nFlags, point);
}
要求
Header: afxwin.h