static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Thread thr = new Thread(ConsoleInputThreadProc); form1 = new PeliculaAgr(); thr.Start(form1); Application.Run(form1); }
private void peliculasToolStripMenuItem1_Click(object sender, EventArgs e) { PeliculaAgr peli = new PeliculaAgr(); peli.Show(); }