Click here to Skip to main content
15,897,371 members
Articles / Programming Languages / C#

InteractiveToolTip - Tooltips you can click on!

Rate me:
Please Sign up or sign in to vote.
4.89/5 (42 votes)
17 Jan 2013CPOL8 min read 76.9K   4.7K   68  
A balloon-style tooltip whose contents are a WinForms Control
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace Demo
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United Kingdom United Kingdom
I've been playing with computers and writing software for around 25 years now, 15 of them in a professional capacity. I've worked in assembly language, C, Java, C++, Pascal and C#, and on systems ranging from embedded microcontrollers to distributed database systems, mobile phones to 3D CAD. I do it because I like to solve problems, but mainly I do it because it's fun!

Comments and Discussions