示例#1
0
        static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Thread thr = new Thread(ConsoleInputThreadProc);

            form1 = new PeliculaAgr();
            thr.Start(form1);
            Application.Run(form1);
        }
示例#2
0
        private void peliculasToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            PeliculaAgr peli = new PeliculaAgr();

            peli.Show();
        }