示例#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));
 }
示例#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));
 }