public MainWindow() { InitializeComponent(); //ThreadStart t = new ThreadStart(connexionServeur); IvyComponent comp = IvyXMLParser.parseXML("test.xml"); if (comp == null) { return; } content.Children.Add(comp.getComponent()); Thread t = new Thread(new ThreadStart(delegate() { try { act = new TestActivity(4); act.connect(); act.waitForClients(); } catch (Exception e) { System.Windows.MessageBox.Show(e.StackTrace); } })); t.Start(); }
protected void loadContent(string xmlFile) { IvyComponent comp = IvyXMLParser.parseXML(xmlFile); if (comp != null) { addComponent(comp); } }