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
When using "Transitionz" to animate visibility we lose the IsEnabled property
tz:Transitionz.Opacity="{tz:OpacityParams From=0, To=1, Duration=200, TransitionOn=Visibility}" tz:Transitionz.Translate="{tz:TranslateParams From='10,0', To='0,0', Duration=200, TransitionOn=Visibility}" tz:Transitionz.Visibility="{Binding ElementName=L_Peers, Path=SelectedItems.Count, Converter={conv:NumElements2Visibility}}"
If we use on the same control: IsEnabled="{Binding IsRecording, Converter={conv:InvertBoolean}}"
Nothing happens. IsEnabled is not being respected. However if I remove the "tz:" clauses, everything works
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using "Transitionz" to animate visibility we lose the IsEnabled property
tz:Transitionz.Opacity="{tz:OpacityParams From=0, To=1, Duration=200, TransitionOn=Visibility}"
tz:Transitionz.Translate="{tz:TranslateParams From='10,0', To='0,0', Duration=200, TransitionOn=Visibility}"
tz:Transitionz.Visibility="{Binding ElementName=L_Peers, Path=SelectedItems.Count, Converter={conv:NumElements2Visibility}}"
If we use on the same control:
IsEnabled="{Binding IsRecording, Converter={conv:InvertBoolean}}"
Nothing happens. IsEnabled is not being respected. However if I remove the "tz:" clauses, everything works
Thanks
The text was updated successfully, but these errors were encountered: