示例#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);
        }
示例#2
0
        public static void Alert(string msg, Form_Alert.enmType type)
        {
            Form_Alert frm = new Form_Alert();

            frm.showAlert(msg, type);
        }
示例#3
0
        public void Alert(string msg1, string msg2, Form_Alert.enmType type)
        {
            Form_Alert frm = new Form_Alert();

            frm.showAlert(msg1, msg2, type);
        }