-
Notifications
You must be signed in to change notification settings - Fork 742
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
Fix visual transition support #6792
Conversation
1d0c61c
to
7aa81aa
Compare
BREAKING CHANGE: `VisualState.Setters` are now applied after `VisualTransition.Storyboard`
7aa81aa
to
1af267b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add some tests please
…ized in the right resource context
The build 32204 found UI Test snapshots differences: Details
|
The build 32225 found UI Test snapshots differences: Details
|
This issue got fixed in .NET 6.0.401.
fix: Remove WPF issue #6792 workaround
This issue got fixed in .NET 6.0.401. (cherry picked from commit 0ed43a0)
fixes #6744
Bugfix
Multiple fixes about transition to fix
ScrollBar
disappearing fromScrollViewer
What is the current behavior?
VisualTransition
between states, itsStoryboard
is not cancelled when changing to another state (driving theVerticalScrollBar
to be set toNone
with a delay even if the scrollbars are needed again)DoubleAnimationUsingKeyFrame
does not cancel its framesVisualTransition
, theVisualState.Setters
of the target state are applied synchronously in theGoToState
while they should be be applied only once theVisualTransition.Storyboard
completes, if any.What is the new behavior?
🙃
PR Checklist
[ ] Docs have been added/updated which fit documentation template (for bug fixes / features)[ ] Unit Tests and/or UI Tests for the changes have been added (for bug fixes / features) (if applicable)Tests on animations are out of scope for nowScreenshots Compare Test Run
results.[ ] Contains NO breaking changesSetters
are now applied afterVisualTransition.Storyboard