Exemple #1
0
 private void baloon_metod(string text_baloon, Control ctrl)
 {
     DevComponents.DotNetBar.Balloon baloon = new DevComponents.DotNetBar.Balloon();
     baloon.Text           = text_baloon;
     baloon.Style          = DevComponents.DotNetBar.eBallonStyle.Alert;
     baloon.AlertAnimation = DevComponents.DotNetBar.eAlertAnimation.TopToBottom;
     baloon.AutoResize();
     baloon.AutoClose        = true;
     baloon.AutoCloseTimeOut = 5;
     baloon.Owner            = this;
     baloon.Show(ctrl, false);
 }