public CockPit(uint processID , DebugFacade facade)
 {
     ProcessID = processID;
     debugMgr = facade;
     AttachCmd attach = new AttachCmd(processID, new AttachReciver(this));
     InitializeComponent();
     MDBGService.PostCommand(attach);
 }
 static void Main(string[] args)
 {
     DebugFacade debugMgr = new DebugFacade();
     
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     CockPitLauncher form = new CockPitLauncher();
             Application.Run(form);
 }