Files
UnrealEngineUWP/Engine/Source/Programs/UnrealVS/BuildStatusIcon.xaml
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

31 lines
1.3 KiB
XML

<!--Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.-->
<UserControl x:Class="UnrealVS.BuildStatusIcon"
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"
mc:Ignorable="d"
d:DesignHeight="200" d:DesignWidth="200"
Foreground="Black">
<UserControl.Resources>
<LinearGradientBrush x:Key="InnerBrush" EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Path=ColorLo}" Offset="1"/>
<GradientStop Color="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Path=ColorHi}" Offset="0"/>
</LinearGradientBrush>
</UserControl.Resources>
<Grid>
<Ellipse Fill="Black" />
<Ellipse Fill="{DynamicResource InnerBrush}" RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="0.85" ScaleY="0.85"/>
<SkewTransform/>
<RotateTransform/>
<TranslateTransform/>
</TransformGroup>
</Ellipse.RenderTransform>
</Ellipse>
</Grid>
</UserControl>