// Main.cs created with MonoDevelop // User: dmontalva at 13:37 09/02/2009 // // To change standard headers go to Edit->Preferences->Coding->Standard Headers // using System; using System.Threading; using Gtk; namespace lliurex_assistant { class MainClass { public static void Main (string[] args) { Application.Init (); MainWindow win = new MainWindow (); win.Show (); // lanzamos un thread que detectará que se ha introducido un nuevo dispositivo Thread proceso = new Thread (new ThreadStart (Utils.detectDevice)); // acabamos el lanzamiento del thread W_configurar.obtener_datos_conf(); Application.Run (); } } }