Click here to Skip to main content
Licence 
First Posted 31 Jul 2002
Views 139,004
Bookmarked 48 times

ToolTipListBox - a list box with tool tips

By | 31 Jul 2002 | Article
A ListBox derived class that shows tool-tips for items that won't fit within the width of the list box

Introduction

I was working on a project where I needed to have a list-box that would show tool tips for items that will not fit within the width of the list-box. Initially I thought there would be a .NET BCL class that would have this facility. I've had forgettable experiences in the past where I'd waste my time writing something that was already available. But this time I found nothing that met my requirements. So I wrote my own list box class derived from the .NET System.Windows.Forms.ListBox class and called it ToolTipListBox.

What it does

Whenever an item in the ToolTipListBox list-box exceeds the width of the list-box control, a tool-tip is floated just over the item. Tool-tips are floated only for items that won't fit within the width of the list-box. For items that do fit in, the tool-tip will not be shown.

Using it

Simply declare your list-box objects as members of the ToolTipListBox class instead of the standard ListBox class. That's all. You'll also have to include the ToolTipListBox class source file in your project. Or you might even build a library and reference it instead.

Class source listing

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;


public class ToolTipListBox : System.Windows.Forms.ListBox
{
    [StructLayout(LayoutKind.Sequential)]
    public struct SIZE
    {
        public int cx;
        public int cy;
    }
    [DllImport("gdi32.dll")]
    public static extern int GetTextExtentPoint32(IntPtr hdc, 
        String str, int len, ref SIZE size);

    [DllImport("user32.dll")]
    public static extern IntPtr GetDC(IntPtr hWnd);

    [DllImport("user32.dll")]
    public static extern int ReleaseDC(IntPtr hWnd,IntPtr hdc);


    public ToolTipListBox()
    {           
        tp.InitialDelay = 500;
        tp.ReshowDelay = 500;
        tp.AutoPopDelay = 3000;         
        tp.Active = true;           
    }   


    protected override void OnMouseMove(
        System.Windows.Forms.MouseEventArgs e)
    {               
        /* Get the index of the mouse-hovered item */
        int index = IndexFromPoint(e.X,e.Y);

        /* Ensure that there is an item */
        if(index != ListBox.NoMatches )
        {               
            /* 
              Check if the mouse has moved enough
              distance for a new index 
            */
            if( LastIndex != index )
            {
                string s = Items[index].ToString(); 

                /* Get the text extent */
                IntPtr hdc = GetDC(this.Handle);
                SIZE size;
                size.cx = 0;
                size.cy = 0;
                GetTextExtentPoint32(hdc,s,s.Length,ref size);
                ReleaseDC(this.Handle,hdc);

                /* If it won't fit show tool-tip */
                if(this.Width < size.cx)                    
                    tp.SetToolTip(this,s);

                LastIndex = index;              
            }                           
        }
    }

    private ToolTip tp = new ToolTip();
    private int LastIndex = -1;

}

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

About the Author

Nish Sivakumar



United States United States

Member

Nish is a real nice guy who has been writing code since 1990 when he first got his hands on an 8088 with 640 KB RAM. Originally from sunny Trivandrum in India, he has been living in various places over the past few years and often thinks it’s time he settled down somewhere.
 
Nish has been a Microsoft Visual C++ MVP since October, 2002 - awfully nice of Microsoft, he thinks. He maintains an MVP tips and tricks web site - www.voidnish.com where you can find a consolidated list of his articles, writings and ideas on VC++, MFC, .NET and C++/CLI. Oh, and you might want to check out his blog on C++/CLI, MFC, .NET and a lot of other stuff - blog.voidnish.com.
 
Nish loves reading Science Fiction, P G Wodehouse and Agatha Christie, and also fancies himself to be a decent writer of sorts. He has authored a romantic comedy Summer Love and Some more Cricket as well as a programming book – Extending MFC applications with the .NET Framework.
 
Nish's latest book C++/CLI in Action published by Manning Publications is now available for purchase. You can read more about the book on his blog.
 
Despite his wife's attempts to get him into cooking, his best effort so far has been a badly done omelette. Some day, he hopes to be a good cook, and to cook a tasty dinner for his wife.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralReally helped me out! PinmemberAndrew Blackburn3:16 23 Dec '08  
GeneralMouse Click Over Tooltip PinmemberSaied Javadi19:05 31 Aug '08  
QuestionTooltips for Combobox items ...???? Pinmembervatsag19:52 16 Jan '08  
GeneralToolTip overlay [modified] PinmemberZooZee0:39 1 May '07  
GeneralRe: ToolTip overlay PinmemberMarco Rosas6:40 8 Aug '07  
GeneralThank you Pinmemberrgeezy7:18 2 Nov '06  
GeneralRe: Thank you Pinmemberwlin710205173:29 22 Nov '06  
GeneralRe: Thank you Pinmemberwlin710205173:42 22 Nov '06  
GeneralRe: Thank you PinmemberAnil_Atta7:54 25 Apr '07  
Questioncan this feature works in ASP??? Pinmemberrachellim17:00 9 Aug '06  
GeneralGreat code PinmemberScarsymmetry0:17 18 Jul '06  
QuestionThis is not Supported on Framework 1.0 PinmemberTanmaysn0:24 29 Nov '05  
QuestionCan u do it For ASP.net Pinmember.NET Follower23:42 5 May '05  
AnswerRe: Can u do it For ASP.net Pinmembersheijin19:31 5 Feb '07  
QuestionNOT WORKING ??? PinmemberDe Nardis Andrea5:16 17 Feb '05  
AnswerRe: NOT WORKING ??? PinmemberDe Nardis Andrea5:53 17 Feb '05  
GeneralToolTip in a TreeView Control Pinmembergsantanaz11:49 12 Jan '05  
GeneralToolTip on ComboBox PinmemberDeena19:09 27 Nov '02  
GeneralRe: ToolTip on ComboBox PinmemberFilipczako12:44 25 Aug '05  
GeneralNice :) Pinmemberleppie7:50 1 Aug '02  
QuestionWhat would be nice... PinmemberShog92:10 1 Aug '02  
AnswerRe: What would be nice... PineditorNishant S6:05 1 Aug '02  
GeneralRe: What would be nice... PinmemberShog96:10 1 Aug '02  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 1 Aug 2002
Article Copyright 2002 by Nish Sivakumar
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid