Is it possible to set, that the balloon tip do not fade away unless I close it?
This is my code:
PazIcon.BalloonTipText = "It has happened!";
PazIcon.BalloonTipTitle = "Information";
PazIcon.BalloonTipIcon = ToolTipIcon.Info;
PazIcon.Visible = true;
PazIcon.ShowBalloonTip(30000);
This is not the intention of a notification tooltip:
If you need a tooltip to remain on the screen, you would have to popup your own form in the corner.