c# tooltip code example
Example 1: tool tip c#
ToolTip newContract = new ToolTip();
newContract.AutoPopDelay = 5000;
newContract.InitialDelay = 1000;
newContract.ReshowDelay = 500;
newContract.ShowAlways = true;
newContract.SetToolTip(buttonNewContract, "Neuen Vertrag hinzufügen");
Example 2: c# asp.net hover tooltip
<form runat="server">
<asp:Button id="button1" Text="Submit" runat="server"
ToolTip="This is an example-button"/>
</form>