예제 #1
0
        static void Main(string[] args)
        {
            if (args.Length != 1)
            {
                throw new Exception(
                          "Error: You must specify the port on which the application will open a TCP socket.");
            }

            var port = args[0];

            var form = new LeanWinForm();

            var desktopClient = new DesktopClient();

            var thread = new Thread(() => desktopClient.Run(port, form));

            thread.SetApartmentState(ApartmentState.STA);
            thread.Start();

            Application.Run(form);

            // The above code is blocking.
            // Once it finishes, close the NetMQ client
            desktopClient.StopServer();
        }
예제 #2
0
        static void Main(string[] args)
        {
            if (args.Length != 1)
            {
                throw new Exception(
                    "Error: You must specify the port on which the application will open a TCP socket.");
            }

            var port = args[0];

            var form = new LeanWinForm();

            var desktopClient = new DesktopClient();

            var thread = new Thread(() => desktopClient.Run(port, form));
            thread.SetApartmentState(ApartmentState.STA);
            thread.Start();

            Application.Run(form);

            // The above code is blocking.
            // Once it finishes, close the NetMQ client
            desktopClient.StopServer();
        }