예제 #1
0
파일: Program.cs 프로젝트: dianatatu/REACH
        static void Main()
        {
            /* Basic inits */
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            /* Create the entry point of the application */
            ReachWindow mdiForm = new ReachWindow();

            /* Set up the starting context of the application */
            Context.EntryPoint = mdiForm;
            Service.Instance.Start();
            Application.Run(mdiForm);
        }
예제 #2
0
        static void Main()
        {
            /* Basic inits */
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            /* Create the entry point of the application */
            ReachWindow mdiForm = new ReachWindow();

            /* Set up the starting context of the application */
            Context.EntryPoint = mdiForm;
            Service.Instance.Start();
            Application.Run(mdiForm);
        }