コード例 #1
0
ファイル: Program.cs プロジェクト: nawns/lundgren
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     var actuator = new Forms.Controller();
     var client = new Forms.Client();
     var server = new Forms.Server();
     actuator.Show();
     client.Show();
     server.Show();
     Application.Run();
 }
コード例 #2
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            var actuator = new Forms.Controller();
            var client   = new Forms.Client();
            var server   = new Forms.Server();

            actuator.Show();
            client.Show();
            server.Show();
            Application.Run();
        }