public void Init()
 {
     var aCurrentProcess = Process.GetCurrentProcess();
     Log.Info(string.Format("Init Process ID: {0} Thread ID: {1}", aCurrentProcess.Id,
         Thread.CurrentThread.ManagedThreadId));
     myBootscreen = new Bootscreen(new BootscreenViewModel());
     myDispatcher = myBootscreen.Dispatcher;
 }
        public void Init()
        {
            var aCurrentProcess = Process.GetCurrentProcess();

            Log.Info(string.Format("Init Process ID: {0} Thread ID: {1}", aCurrentProcess.Id,
                                   Thread.CurrentThread.ManagedThreadId));
            myBootscreen = new Bootscreen(new BootscreenViewModel());
            myDispatcher = myBootscreen.Dispatcher;
        }