Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed embedded dialog host style (#2826)
Using materialDesign:TransitionAssist.DisableTransitions="true" duration of animation for content cover opacity should be set to 0 to skip animations at all on close dialog host
  • Loading branch information
Erapchu committed Aug 24, 2022
commit 8f38417a3619e4ef54aa7b5d4dc5859ffec9d74d
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
Duration="0">
<DiscreteObjectKeyFrame Value="{x:Static Visibility.Collapsed}" KeyTime="0" />
</ObjectAnimationUsingKeyFrames>
<DoubleAnimation Storyboard.TargetName="ContentCoverBorder" Storyboard.TargetProperty="Opacity"
<DoubleAnimation Storyboard.TargetName="ContentCoverBorder" Storyboard.TargetProperty="Opacity" Duration="0"
To="0" />
</Storyboard>
</VisualState>
Expand Down