Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#
Article

Displaying a Title and an Icon in a ToolTip window

Rate me:
Please Sign up or sign in to vote.
3.92/5 (6 votes)
2 Dec 2005 49.9K   1.7K   33   8
How to display a title and an icon in a ToolTip window.

Sample Image

Introduction

There are a lot of articles about ToolTip controls. However, all of them do not support displaying a title and an icon. So I am sharing my ToolTip control named ScToolTip which supports displaying of a title and an icon.

Using the Control

To use the control, you just drag the control onto the form from the Visual Studio .NET toolbox. Then each control on the form will have three new properties that you can set for the particular object. Visual Studio will add the additional code automatically to support displaying tooltip for controls.

Points of Interest

The ScToolTip class is declared as follows:

C#
[
ProvideProperty("ToolTip",typeof(Control)),
ProvideProperty("TipTitle",typeof(Control)),
ProvideProperty("IconType", typeof(Control)),
]
public class ScToolTip : Component,IExtenderProvider

To display different titles and icons, you must fill the TOOLINFO structure like this:

C#
TOOLINFO toolinfo = new TOOLINFO();
toolinfo.hwnd = handle;
// the window handle which will accept
// the TTN_NEEDTEXT message sended
// by the native tooltip window.

toolinfo.uFlags = TTF_IDISHWND;
toolinfo.uId = control.Handle;
toolinfo.lpszText = LPSTR_TEXTCALLBACKW;
// the native tooltip window sends
// the TTN_NEEDTEXT message to the owner
// window to retrieve the text.

When the owner window accepts the TTN_NEEDTEXT message, we do this:

C#
if (m.Msg == NativeMethods.WM_NOTIFY)
{
    NativeMethods.NMHDR hdr = 
      (NativeMethods.NMHDR)
      Marshal.PtrToStructure(m.LParam, 
      typeof(NativeMethods.NMHDR));

    if (hdr.code == NativeMethods.TTN_NEEDTEXT)
    {
        Control control = 
                Control.FromHandle(new IntPtr(hdr.idFrom));
        if (control != null)
        {
            string text = GetToolTip(control);
            //.Replace("\\n",Environment.NewLine);

            string title = GetTipTitle(control);
            int icon = (int)GetIconType(control);

            // change the title and icon 
            NativeMethods.SendMessage(new HandleRef(this, 
                this.Handle),NativeMethods.TTM_SETTITLE,icon,title);

            NativeMethods.NMTTDISPINFO info = 
              (NativeMethods.NMTTDISPINFO)
              Marshal.PtrToStructure(m.LParam, 
              typeof(NativeMethods.NMTTDISPINFO));
            info.lpszText = text;
            Marshal.StructureToPtr(info,m.LParam,true);
        }
    }
}

References

This article was inspired by wilsone8's article "Building a Ballontooltip provider in C#".

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
China China
I love c#.

Comments and Discussions

 
Generalmissing features Pin
Saied Javadi12-Jun-06 5:10
Saied Javadi12-Jun-06 5:10 
GeneralVery Nice Pin
ANIL KUMAR SHARMA (INDIA)31-Mar-06 22:12
ANIL KUMAR SHARMA (INDIA)31-Mar-06 22:12 
QuestionVery very nice but... Pin
dox2477-Dec-05 2:27
dox2477-Dec-05 2:27 
AnswerRe: Very very nice but... Pin
SimplyConfuzed12-Jul-06 9:15
SimplyConfuzed12-Jul-06 9:15 
AnswerRe: Very very nice but... Pin
joel danowitz29-Sep-08 19:17
joel danowitz29-Sep-08 19:17 
GeneralRe: Very very nice but... Pin
SanShark15-Jun-09 0:13
SanShark15-Jun-09 0:13 
GeneralRe: Very very nice but... Pin
SanShark15-Jun-09 0:15
SanShark15-Jun-09 0:15 
GeneralRe: Very very nice but... Pin
SanShark15-Jun-09 0:14
SanShark15-Jun-09 0:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.