public static void ShowBalloon(string toolTip, Control control, ToolTipLocation toolTipLocation,
                                       int duration)
        {
            BalloonToolTip tip = new BalloonToolTip();

            tip.Show(toolTip, control, toolTipLocation, duration);
        }
Пример #2
0
 public static void ShowBallonTip(Control control, string text,
                                  ToolTipLocation toolTipLocation = ToolTipLocation.TopRight, int duration = 3000)
 {
     BalloonToolTip.ShowBalloon(text, control, toolTipLocation, duration);
 }