Guide pratique pour créer une info-bulle pour une zone rectangulaire
L’exemple suivant montre comment créer un contrôle d’info-bulle standard pour l’ensemble de la zone cliente d’une fenêtre.
L’illustration suivante montre l’info-bulle qui s’affiche lorsque le pointeur de la souris se trouve dans la fenêtre cliente d’une boîte de dialogue. Le handle de la boîte de dialogue a été passé à la fonction illustrée dans l’exemple précédent.
Bon à savoir
Technologies
Prérequis
- C/C++
- Programmation de l’interface utilisateur Windows
Instructions
Créer une info-bulle pour une zone rectangulaire
L’exemple suivant montre comment créer un contrôle d’info-bulle standard pour l’ensemble de la zone cliente d’une fenêtre.
void CreateToolTipForRect(HWND hwndParent)
{
// Create a tooltip.
HWND hwndTT = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS, NULL,
WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
hwndParent, NULL, g_hInst,NULL);
SetWindowPos(hwndTT, HWND_TOPMOST, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
// Set up "tool" information. In this case, the "tool" is the entire parent window.
TOOLINFO ti = { 0 };
ti.cbSize = sizeof(TOOLINFO);
ti.uFlags = TTF_SUBCLASS;
ti.hwnd = hwndParent;
ti.hinst = g_hInst;
ti.lpszText = TEXT("This is your tooltip string.");
GetClientRect (hwndParent, &ti.rect);
// Associate the tooltip with the "tool" window.
SendMessage(hwndTT, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) &ti);
}
Rubriques connexes