Exemple #1
0
        public static void MessError(string title)
        {
            AlertForm alertForm = new AlertForm();

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

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

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

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