예제 #1
0
        static void Main(string[] args)
        {
            testForm tf = new testForm();

            tf.Show();
            while (tf.Visible == true)
            {
                Application.DoEvents();
                System.Threading.Thread.Sleep(1);
            }
        }
예제 #2
0
파일: Program.cs 프로젝트: viticm/pap2
        static void Main(string[] args)
        {


            testForm tf = new testForm();
            tf.Show();
            while (tf.Visible == true)
            {
                Application.DoEvents();
                System.Threading.Thread.Sleep(1);
            }
        }