Ejemplo n.º 1
0
        public static void MessError(string title)
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(title, AlertForm.enmType.Error);
        }
Ejemplo n.º 2
0
        public static void Warning(string title)
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(title, AlertForm.enmType.Warning);
        }
Ejemplo n.º 3
0
        public static void MessSuccess(string msg = "Success !!!")
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(msg, AlertForm.enmType.Success);
        }
Ejemplo n.º 4
0
        public static void MessInf(string title)
        {
            AlertForm alertForm = new AlertForm();

            alertForm.showAlert(title, AlertForm.enmType.Info);
        }