public WatchItem(string WatchName)
     : base(WatchName, null)
 {
     this.WatchName = WatchName;
     this.Value = null;
 }
 public VariablePropertyDescriptor(Variable Var)
     : base(Var.Value.Name, null)
 {
     this.Var = Var;
 }