Exemplo n.º 1
0
 public static void Alert(this FormSE form, string message, AlertSE.Type type, bool closable)
 {
     form.View.WriteCode(AlertSE.GetAlertCode(form.Id, message, type, closable, 0, string.Empty));
 }
Exemplo n.º 2
0
 public static void Alert(this FormSE form, string message, AlertSE.Type type, bool closable, int closeInSeconds, string icon)
 {
     form.View.WriteCode(AlertSE.GetAlertCode(form.Id, message, type, closable, closeInSeconds, icon));
 }