Ejemplo n.º 1
0
 public void UnSubscribe()
 {
     this.Controls.Clear();
     this.host              = null;
     this.dashboard         = null;
     this.host              = null;
     this.enterMainForm     = null;
     this.currentView       = null;
     this.db                = null;
     this.loadedRuntimeView = null;
 }
Ejemplo n.º 2
0
 public void UnSubscribe()
 {
     this.Controls.Clear();
     this.host = null;            
     this.dashboard = null;
     this.host = null;
     this.enterMainForm = null;
     this.currentView = null;
     this.db = null;
     this.loadedRuntimeView = null;
 }
Ejemplo n.º 3
0
 public void Render(Epi.EnterCheckCodeEngine.RunTimeView runTimeView)
 {
     try
     {
         if (!runTimeView.View.IsRelatedView)
         {
             this.runTimeView = runTimeView;
             FillFromNodes();
             FillToNodes();
         }
         else
             ToggleEnable(false);
     }
     catch (Exception ex)
     {
         //temporarily catch all
     }
 }
Ejemplo n.º 4
0
 public void Render(Epi.EnterCheckCodeEngine.RunTimeView runTimeView)
 {
     try
     {
         if (!runTimeView.View.IsRelatedView)
         {
             this.runTimeView = runTimeView;
             FillFromNodes();
             FillToNodes();
             ToggleEnable(true);
         }
         else
         {
             lvLinkedFrom.Clear();
             lvLinkedTo.Clear();
             ToggleEnable(false);
         }
     }
     catch { }
 }