I have a UserControl where I am animating it's Opacity property. Now I want to set the control's Visibility to 'Collapsed' once the Opacity is reduced to '0'. Following is the style I have added to the UserControl:
<UserControl.Style>
<Style TargetType="{x:Type UserControl}">
<Style.Triggers>
<Trigger Property="Opacity" Value="0">
<Setter Property="Visibility" Value="Collapsed" />
</Trigger>
</Style.Triggers>
</Style>
</UserControl.Style>
However the trigger is not firing when the when opacity is 0. Please guide appropriately.
Upon request, I have added some more code as follows: Note:The UserControl is actually meant to behave as a BusyIndicator.
<UserControl x:Class="BusyIndicatorDemo.BusyIndicator"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Name="BusyIndicatorUC"
mc:Ignorable="d">
<UserControl.Style>
<Style TargetType="{x:Type UserControl}">
<Style.Triggers>
<Trigger Property="Opacity" Value="0">
<Setter Property="Visibility" Value="Collapsed" />
</Trigger>
</Style.Triggers>
</Style>
</UserControl.Style>
<UserControl.Resources>
<Storyboard x:Key="storyboard">
<DoubleAnimation Storyboard.TargetProperty="(Image.RenderTransform).(RotateTransform.Angle)" From="0" To="360" Duration="0:0:5" RepeatBehavior="Forever" />
</Storyboard>
<Storyboard x:Key="fadeIn">
<DoubleAnimation Storyboard.TargetProperty="Opacity" From="0" To="1" Duration="0:0:1" />
</Storyboard>
<Storyboard x:Key="fadeOut">
<DoubleAnimation Storyboard.TargetProperty="Opacity" From="1" To="0" Duration="0:0:1" />
</Storyboard>
<Storyboard x:Key="dotsStorboard">
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="dotsTextBlock" Storyboard.TargetProperty="Text" Duration="00:00:01.2" RepeatBehavior="Forever">
<DiscreteObjectKeyFrame KeyTime="00:00:00.0" Value="" />
<DiscreteObjectKeyFrame KeyTime="00:00:00.3" Value="." />
<DiscreteObjectKeyFrame KeyTime="00:00:00.6" Value=". ." />
<DiscreteObjectKeyFrame KeyTime="00:00:00.9" Value=". . ." />
</ObjectAnimationUsingKeyFrames>
</Storyboard>
<Style x:Key="Spinner" TargetType="Image">
<Setter Property="IsEnabled" Value="{Binding ElementName=BusyIndicatorUC, Path=IsBusy, UpdateSourceTrigger=PropertyChanged}" />
<Setter Property="Image.RenderTransform">
<Setter.Value>
<RotateTransform Angle="0" />
</Setter.Value>
</Setter>
</Style>
</UserControl.Resources>
<Grid Name="RootGrid">
<Rectangle Opacity="0.3" RadiusX="10" RadiusY="10" Margin="0">
<Rectangle.Fill>
<RadialGradientBrush>
<GradientStop Color="#FF6C6C6C" Offset="1"/>
<GradientStop Color="White"/>
<GradientStop Color="#FFADADAD" Offset="0.545"/>
<GradientStop Color="#FF818181" Offset="0.818"/>
</RadialGradientBrush>
</Rectangle.Fill>
</Rectangle>
<Grid Name="busyIndicatorHolder" HorizontalAlignment="Center" VerticalAlignment="Center">
<Rectangle Fill="Black" Opacity="1" RadiusX="10" RadiusY="10" Height="25" Margin="15,0,10,0">
<Rectangle.Effect>
<DropShadowEffect Color="Black" ShadowDepth="0" BlurRadius="25"/>
</Rectangle.Effect>
</Rectangle>
<StackPanel Orientation="Horizontal" Name="ContentSP" Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center">
<Image Name="logo" Margin="2" RenderTransformOrigin="0.5,0.5" Source="E:\Images\clip_icon.png" RenderOptions.BitmapScalingMode="HighQuality" Height="45" HorizontalAlignment="Center" VerticalAlignment="Center" Style="{StaticResource Spinner}" />
<TextBlock Name="busyIndicatorTextBlock" Margin="5,0,0,0" Padding="0,0,5,0" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" />
<TextBlock Name="dotsTextBlock" Margin="0,0,20,0" Width="17" Visibility="Collapsed" Text=". . ." HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" />
</StackPanel>
</Grid>
</Grid>
The 'fadeIn' and 'fadeOut' storyboard animations are played from the code-behind. So these opacity animations work perfect except that the Style Opacity Trigger won't fire. Hope the additional provided info is sufficient.