tooltips

#include <commctrl.h>
#pragma comment(lib, "comctl32.lib")

  InitCommonControls();
  m_ToolTip = CreateWindow(TOOLTIPS_CLASS, (LPSTR) NULL, TTS_ALWAYSTIP,
     CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
     NULL, (HMENU) NULL, NULL, NULL);

你可能感兴趣的:(tooltips)