共用方式為


CWnd::CancelToolTips

如果工具提示目前所顯示的,請呼叫此成員函式從螢幕移除工具提示。

static void PASCAL CancelToolTips(
   BOOL bKeys = FALSE 
);

參數

  • bKeys
    移除工具提示的 ,且按下按鍵並設定為預設的狀態列文字,否則

備註

注意事項注意事項

使用這個成員函式沒有與工具提示 Managed 的效果是由您的程式碼。它只會影響 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

請參閱

參考

CWnd 類別

階層架構圖

CWnd::EnableToolTips

TTM_ACTIVATE