请问如何实现windowsXP的气球提示功能!

解决方案 »

  1.   

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/editcontrols/editcontrolreference/editcontrolstructures/editballoontip.asphttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/editcontrols/editcontrolreference/editcontrolmessages/em_showballoontip.asp用SendMessage发送一个消息就可以了
      

  2.   

    http://expert.csdn.net/Expert/topicview.asp?id=2961191
      

  3.   

    EDITBALLOONTIP Structure  --------------------------------------------------------------------------------The EDITBALLOONTIP structure contains information about a balloon tip associated with a button control.Syntaxtypedef struct tagEDITBALLOONTIP {
        DWORD cbStruct;
        LPCWSTR pszTitle;
        LPCWSTR pszText;
        INT ttiIcon;
    } EDITBALLOONTIP, *PEDITBALLOONTIP;
    MemberscbStruct
    DWORD that contains the size, in bytes, of the structure. 
    pszTitle
    Pointer to a Unicode string that contains the title of the balloon tip. 
    pszText
    Pointer to a Unicode string that contains the balloon tip text. 
    ttiIcon
    Value of type INT that specifies the type of icon to associate with the balloon tip. This member can be one of the following values. 
    TTI_ERROR
    Use the error icon.
    TTI_INFO
    Use the information icon.
    TTI_NONE
    Use no icon.
    TTI_WARNING
    Use the warning icon.
    Structure InformationHeader Declared in Commctrl.h 
    Minimum operating systems Windows XP See Also