static void Main() { IEventConduit eventConduit = new DefaultEventConduit(); eventConduit.Start(); ProducerController producerController = new ProducerController(eventConduit); producerController.Start(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); eventConduit.Stop(); producerController.Stop(); }