Beispiel #1
0
        //exibe mensagens de notificação para o usuário
        public static void notificacao(string mensagem, Form_Alert.enmType tipo)
        {
            Form_Alert f = new Form_Alert
            {
                ShowInTaskbar = false,
                TopMost       = true
            };

            f.showAlert(mensagem, tipo);
        }
Beispiel #2
0
        public void Alert(string msg, Form_Alert.enmType type)
        {
            Form_Alert frm = new Form_Alert();

            frm.showAlert(msg, type);
        }
Beispiel #3
0
        public void Alert(string message, int totalCount, Form_Alert.enmType type)
        {
            Form_Alert alertForm = new Form_Alert();

            alertForm.showAlert(message, totalCount, type);
        }