public PluginControl(PluginControlValueType valueType, string name, object defaultValue)
     : this(valueType, name)
 {
     this.DefaultValue = defaultValue;
 }
 public PluginControl(PluginControlValueType valueType, string name)
 {
     this.valueType = valueType;
     this.name = name;
     this.DefaultValue = null;
 }