상속: System.Windows.Forms.Form
예제 #1
0
파일: Program.cs 프로젝트: John-Chan/crush
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            //Application.Run(new MainWindow());

            MainWindow mw = new MainWindow();
            mw.Show();
            while(mw.Visible)
            {
                Application.DoEvents();
                mw.DispatchDrawingEvents();
            }
        }