Ejemplo n.º 1
0
        public void Alert(string msg, frmAlert.Type type)
        {
            Thread aleart = new Thread(new ThreadStart(() => Application.Run(new frmAlert(msg, type))));

            aleart.Start();
        }
Ejemplo n.º 2
0
 public frmAlert(string msg, frmAlert.Type type)
 {
     InitializeComponent();
     showAlert(msg, type);
 }