
I'm having issues when I try to multibind the value of doubleeditbox as seen below:
<editors:DoubleEditBox ValueChanged="LollipopMill_ValueChanged" Width="80" x:Name="LollipopMillChamferLength">
<editors:DoubleEditBox.Value>
<Multibinding Converter="{StaticResource AngleLengthConverter}">
<Binding ElementName="LollipopMillShankDiameter" Path="Value" />
<Binding ElementName="LollipopMillShoulderDiameter" Path="Value" />
<Binding ElementName="LollipopMillChamferAngle" Path="Value" />
</Multibinding>
</editors:DoubleEditBox.Value>
</editors:DoubleEditBox>
Any help would be greatly appreciated.