Click here to Skip to main content
15,886,519 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 75.9K   4.7K   68  
A balloon-style tooltip whose contents are a WinForms Control
#region License

//
// InteractiveToolTip.Designer.cs
//
// Copyright (C) 2012-2013 Alex Taylor.  All Rights Reserved.
//
// InteractiveToolTip is published under the terms of the Code Project Open License.
// http://www.codeproject.com/info/cpol10.aspx
//

#endregion License

namespace Digitalis.GUI.Controls
{
    partial class InteractiveToolTip
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                if (null != components)
                    components.Dispose();

                Hide();
            }

            base.Dispose(disposing);
        }

        #region Component Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
        }

        #endregion
    }
}

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