CWnd::CancelToolTips
Şu anda bir araç ipucu görüntüleniyorsa, araç ipucu ekranından kaldırmak için bu üye işlevini çağırın.
static void PASCAL CancelToolTips(
BOOL bKeys = FALSE
);
Parametreler
- bKeys
GERÇEK bir tuşa basıldığında ve durum çubuğu metnini varsayılan; ayarladığınızda, araç ipuçları iptal etmek için Aksi halde yanlış.
Notlar
Not
Bu üye işlevini kullanarak, kodunuz tarafından yönetilen araç ipuçları üzerinde etkisi yoktur.Yalnızca tarafından yönetilen araç ipucu denetimini etkiler CWnd::EnableToolTips.
Örnek
// 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);
}
Gereksinimler
Başlık: afxwin.h