Is there a special trick required to get BooleanElement's ValueChanged event firing?
The code below is never executed if I switch the status:
this.oElementSenderCC = new BooleanElement ("Send Copy To Myself" ), true);
this.oElementSenderCC.ValueChanged += (sender, e) => this.SelectedSenderCC = this.oElementSenderCC.Value;
this seems working for me