Argonaut.MainWindow.EnablebReconstruct C# (CSharp) Method

EnablebReconstruct() private method

private EnablebReconstruct ( ) : void
return void
        private void EnablebReconstruct()
        {
            if (this.bReconstruct.Dispatcher.CheckAccess())
            {
                string visualizer = System.IO.Path.GetFullPath(@".\visualizer.html");
                this.WebHandle.Source = new Uri(visualizer);
                this.bReconstruct.IsEnabled = true;
            }
            else
            {
                this.bReconstruct.Dispatcher.Invoke(
                    System.Windows.Threading.DispatcherPriority.Normal,
                    new GuiUpdate(this.EnablebReconstruct));
            }
        }