We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This works
<local:DataItemUI x:Name="SetPosition" EditOrderNext="{Binding ElementName=LoadOffs, Mode=OneWay}" />
This also works
<local:DataItemUI x:Name="SetPosition" EditOrderNext="{Binding ElementName=RotationsPerFoot, Mode=OneWay}" />
Now I want to bind the EditOrderNext conditionally, but none of the following work (binding returns null)
<local:DataItemUI x:Name="SetPosition" EditOrderNext="{qc:MultiBinding '$P0 ? $P1 : $P2', P0={Binding IsGroup}, P1={Binding ElementName=SoftUp}, P2={Binding ElementName=RotationsPerFoot}}" />
<local:DataItemUI x:Name="SetPosition" EditOrderNext="{qc:MultiBinding '$P0 ? $P1 : $P2', P0={Binding IsGroup}, P1={Binding Source={x:Reference SoftUp}}, P2={Binding Source={x:Reference RotationsPerFoot}}}" />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This works
This also works
Now I want to bind the EditOrderNext conditionally, but none of the following work (binding returns null)
The text was updated successfully, but these errors were encountered: