How to

set tooltip for control

Published: 18. December 2008 | Updated: 18. December 2008
License: Microsoft Public License (MS-PL)
Categories: Winforms
Tags: C# Controls UI Winforms
Was this snippet helpful for you? YESYES / NONO

Import namespace

using System.Windows.Forms;

Code

ToolTip toolTip = new ToolTip();

toolTip.SetToolTip(this.button1, "Click here!");
Send us feedback about this snippet »



Related Snippets: