CWnd::CancelToolTips
Wywołanie tej funkcji Członkowskich usunąć etykietka narzędzia z ekranu, jeśli aktualnie wyświetlana etykietka narzędzia.
static void PASCAL CancelToolTips(
BOOL bKeys = FALSE
);
Parametry
- bKeys
TRUE , aby anulować podpowiedzi, gdy klawisz jest wciśnięty i Ustaw tekst paska stanu domyślne; w przeciwnym razie FALSE.
Uwagi
[!UWAGA]
Funkcja Członkowskich nie ma wpływu na podpowiedzi zarządzane przez kod.Dotyczy tylko formantu Porada narzędzia zarządzane przez CWnd::EnableToolTips.
Przykład
// 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);
}
Wymagania
Nagłówek: afxwin.h