In a legacy component I was troubleshooting, I stumbled across the following:
<CustomControls:DiscreteSlider x:Name="slider" Grid.Column="1">
<CustomControls:DiscreteSlider.Value>
<MultiBinding Mode="TwoWay">
<MultiBinding.Converter>
<WinConverters:FeatureConverter />
</MultiBinding.Converter>
<Binding Path="Enabled" />
<Binding Path="Value" />
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type local:DialogBase}}" />
</MultiBinding>
This was a binding for a slider-like user control ("DiscreteSlider") that had the following code in code behind (control actually wraps a slider and performs operations on it):
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register(
"Value",
typeof(double),
typeof(DiscreteSlider),
new FrameworkPropertyMetadata((double)0.0,
FrameworkPropertyMetadataOptions.AffectsRender,
new PropertyChangedCallback(OnValueChanged)));
public double Value
{
get { return (double)GetValue(ValueProperty); }
set { SetValue(ValueProperty, value); }
}
private static void OnValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
DiscreteSlider obj = d as DiscreteSlider;
if (obj != null)
{
double oldValue = (double)e.OldValue;
double newValue = (double)e.NewValue;
obj._Slider.Value = newValue;
obj.DoValueChanged(oldValue, newValue);
}
}
And
private void Thumb_DragCompleted(object sender, DragCompletedEventArgs e)
{
_IsUserChange = true;
Value = _Slider.Value;
}
What had been happening was that the value was not actually updating. The _Slider.Value was set properly, but after Value was assigned to it, Value was unchanged.
The only thing that had changed about/around this code was that we had gone from .NET 3.5 to 4.0. I was able to "fix" this by removing Mode="TwoWay" from the multibinding in XAML. But, I cannot stand programming by coincidence. I want to know why this happened.
Is anyone aware of an explanation as to why this XAML and code would be functional in 3.5 and not in 4? If you can think of some other potential explanation, I'm open to hear it, but neither the XAML nor the code behind of that control has been changed since it was deployed (and functional) in 3.5.
Edit:
Here is the code for the value converter in question:
public class FeatureConverter : IMultiValueConverter
{
private bool Enabled = true;
private const int MinValue = MelodyConst.MinValue;
public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (values == null || values.Count() < 2) return null;
double returnValue = MelodyConst.DisabledValue;
bool featureEnabled;
Int32 featureValue;
bool.TryParse(values[0].ToString(), out featureEnabled);
Int32.TryParse(values[1].ToString(), out featureValue);
Enabled = featureEnabled;
if (!featureEnabled)
return returnValue;
else
returnValue = (double)(featureValue);
return returnValue;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
{
Int32 newSliderValue;
Int32.TryParse(value.ToString(), out newSliderValue);
object[] lsValues = new object[2];
lsValues[0] = (object)Enabled;
lsValues[1] = newSliderValue;
return lsValues;
}
}