<Canvas x:Name="CnsAnimations" Canvas.ZIndex="1000" Canvas.Left="900" Visibility="Collapsed">
<Grid x:Name="GrdAnimations" Margin="200,10,0,0">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Border x:Name="BrdAnimations" CornerRadius="5" BorderBrush="Transparent" BorderThickness="0" Canvas.Left="-200" Grid.Row="1">
<Border.Resources>
<Storyboard x:Name="ZoomStoryBoard1">
<DoubleAnimation Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)"
Storyboard.TargetName="BrdAnimations" From="-100" To="50" Duration="0:0:0.5">
</DoubleAnimation>
</Storyboard>
<Storyboard x:Name="ZoomStoryBoard2">
<DoubleAnimation Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleX)"
Storyboard.TargetName="BrdAnimations" From="0" To="1" Duration="0:0:0.5">
</DoubleAnimation>
</Storyboard>
</Border.Resources>
<Border.RenderTransform>
<ScaleTransform></ScaleTransform>
</Border.RenderTransform>
<Border.Projection>
<PlaneProjection CenterOfRotationX="0.49" CenterOfRotationY="1" CenterOfRotationZ="300" RotationX="3.13" RotationY="-136" RotationZ="-3.13" LocalOffsetX="-8.91" LocalOffsetY="0" LocalOffsetZ="0" GlobalOffsetX="-27.83" GlobalOffsetY="73.04" GlobalOffsetZ="3.48"/>
</Border.Projection>
<Border.Background>
<SolidColorBrush x:Name="SolidValidationBackground" Color="Bisque"/>
<!--<ImageBrush x:Name="ImgValidationBackground" ImageSource="{StaticResource ValidationImg}"/>-->
</Border.Background>
<Grid Grid.Row="0">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<HyperlinkButton Name="ImgClose" Content="X" Foreground="White" Margin="0,3,5,0" HorizontalAlignment="Right" Grid.Row="0" ToolTipService.ToolTip="Close" Click="ImgClose_Click"/>
<!--<Image Name="ImgClose" Source="{StaticResource Cancel}" Margin="0,-20,20,0" HorizontalAlignment="Right"
Grid.Row="0" ToolTipService.ToolTip="Close" MouseLeftButtonUp="ImgClose_MouseLeftButtonUp"></Image>-->
<TextBlock Name="TxbErrorMessage" Foreground="Red" HorizontalAlignment="Center" Margin="50,0,0,0"
Grid.Row="0" Grid.RowSpan="2" FontFamily="Comic Sans MS"/>
</Grid>
</Border>
</Grid>
</Canvas>