I have Rectangle that I want to flip in the X axis, I'm using ScaleTransform.
The problem is that i want to use converter for the multi binding, but when i use multi binding the Rectangle doesn't flip.
If i use single binding it works.
In the XAML just replay between the binding and the multi binding to see the result.
The converter for the multi binding is:
public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return -1;
}
Bookmarks