private void GoalViewInit()
 {
     TreeGoals.Clear();
     GoalInfo = string.Empty;
     LineSel  = new eLINE();
     HostName = string.Empty;
     Label    = string.Empty;
 }
 private void OnEventViewGoalItemChange(object sender, GOALITEM e)
 {
     SelTreeItem = e;
     if (e != null)
     {
         GoalInfo = $"{e.type}, {e.label}";
         LineSel  = e.line;
         HostName = e.hostName;
         Label    = e.label;
     }
     else
     {
         GoalInfo = string.Empty;
         LineSel  = new eLINE();
         HostName = string.Empty;
         Label    = string.Empty;
     }
 }
 private void ComboChangedEvent(object obj)
 {
     comboSelectedValue = (eLINE)obj;
 }