It's interesting to see that this bug which was closed earlier is still not fixed, might be because the code has been re written or whatever.. Fix need to be applied in repository
Two changes were needed
Made value as virtual in BoolElement Class
public virtual bool Value
Added override for value in BooleanElement
public override bool Value {
get {
return base.Value;
}
set {
base.Value = value;
if(value)
{
sw.On = true;
}
else
{
sw.On = false;
}
}
}
It's interesting to see that this bug which was closed earlier is still not fixed, might be because the code has been re written or whatever.. Fix need to be applied in repository
Two changes were needed
public virtual bool Value