public void Run(string xaml)
 {
     System451.Communication.Dashboard.ViZ.App app = new System451.Communication.Dashboard.ViZ.App();
     App.LoadPlugins();
     App.LoadAssembliesGeneric();
     r = new Run(xaml);
 }
 public void Start()
 {
     {
         try
         {
             r.ShowDialog();
         }
         catch { }
         try
         {
             r.DashboardDataHub.Stop();
             r.StopAll();
         }
         catch { }
         r = null;
     }
     GC.Collect();
 }