c sharp how to use tool tip code example
Example: 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");