Skip to content

Commit 76eab1e

Browse files
authored
Fixed embedded dialog host style (#2826) (#2829)
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
1 parent 8361fb8 commit 76eab1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DialogHost.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
341341
Duration="0">
342342
<DiscreteObjectKeyFrame Value="{x:Static Visibility.Collapsed}" KeyTime="0" />
343343
</ObjectAnimationUsingKeyFrames>
344-
<DoubleAnimation Storyboard.TargetName="ContentCoverBorder" Storyboard.TargetProperty="Opacity"
344+
<DoubleAnimation Storyboard.TargetName="ContentCoverBorder" Storyboard.TargetProperty="Opacity" Duration="0"
345345
To="0" />
346346
</Storyboard>
347347
</VisualState>

0 commit comments

Comments
 (0)