Start() public method

public Start ( ) : void
return void
Ejemplo n.º 1
0
Archivo: Main.cs Proyecto: mono/uia2atk
		public static void Start (MovingThread guiThread)
		{
			if ((guiThread != null) && (guiThread.ThreadState == ThreadState.Running))
				return;

			if (guiThread != null) {

				guiThread.NotMainLoopDeleg = Run;
				guiThread.Start ();
				
				//little hack (it doesn't matter, it's just for the nunit tests) in
				//order to wait for Gtk initialization
				for (int i = 0; i < 20 && win == null; i++)
				Thread.Sleep (250);
			}
			else
			{
				Run ();
			}
		}
Ejemplo n.º 2
0
        public static void Start(MovingThread guiThread)
        {
            if ((guiThread != null) && (guiThread.ThreadState == ThreadState.Running))
            {
                return;
            }

            if (guiThread != null)
            {
                guiThread.NotMainLoopDeleg = Run;
                guiThread.Start();

                //little hack (it doesn't matter, it's just for the nunit tests) in
                //order to wait for Gtk initialization
                for (int i = 0; i < 20 && win == null; i++)
                {
                    Thread.Sleep(250);
                }
            }
            else
            {
                Run();
            }
        }