示例#1
0
        protected void CerrarSplashScreen(object sender, ElapsedEventArgs e)
        {
            VntLogin Login = new VntLogin();

            Login.Show();
            TmpTemporizador.Enabled = false;
            this.Destroy();
        }
示例#2
0
        public static void Main(string[] args)
        {
            Application.Init();
            VntLogin win = new VntLogin();

            win.Show();
            Application.Run();
        }
示例#3
0
 protected void OnBtnCerrarSesionClicked(object sender, EventArgs e)
 {
     if (cod.Mensaje("¿Está seguro de cerrar sesión?", ButtonsType.YesNo, MessageType.Question) == ResponseType.Yes)
     {
         VntLogin Login = new VntLogin();
         Login.Show();
         this.Destroy();
     }
 }