-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MultiBinding cannot be applied to a Transform #62
Comments
Can you post a sample code so I can try to help? In any case, are you targetting UWP only? If so, I recommend using |
Hey Pedro. Thanks for your quick response as always! Yes, I'm targeting UWP. This is the code I'm using right now:
Basically, my model has polar coordinates and I want to transform them to cartesian coordinates in order to project a "border" that will simulate a shadow. So, I'm getting angle and distance. I hope you can check it :) In the meanwhile, I'm trying to do it with x:Bind. I have never been a friend of x:Bind because the many restrictions it has, but it may help in this concrete case. Big thanks in advance! |
Maybe they can it only be applied to FrameworkElements.
EDIT: I have just discovered that I can be applied to a MultiBinding only just change the Type Parameter of its declaration to
Behavior<DependencyObject>
EDIT 2: Unfortunately, it seems that the
MultiBindingBehavior
still doesn't work with a Transform. All the values in theConverter
come withnull
instead the real value.Bit thanks in advance, Pedro!
The text was updated successfully, but these errors were encountered: