|
0
|
1 |
<UserControl x:Class="Iri.Modernisation.Controls.View.ButtonHeaderControl"
|
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4
|
4 |
xmlns:Lang="clr-namespace:Iri.Modernisation.Lang;assembly=Iri.Modernisation.Lang"
|
|
0
|
5 |
|
|
|
6 |
Width="58" Height="42" ><!--MouseLeftButtonUp="UserControl_MouseLeftButtonUp">-->
|
|
|
7 |
<UserControl.Resources>
|
|
4
|
8 |
<Lang:LangResource x:Name="LangLabels" x:Key="LangLabels"></Lang:LangResource>
|
|
0
|
9 |
<Storyboard x:Name="animEnter">
|
|
|
10 |
<DoubleAnimation To="1" FillBehavior="HoldEnd" Storyboard.TargetName="brushLight" Storyboard.TargetProperty="Opacity"
|
|
|
11 |
Duration="0:0:0.1"/>
|
|
|
12 |
</Storyboard>
|
|
|
13 |
<Storyboard x:Name="animLeave">
|
|
|
14 |
<DoubleAnimation To="0" FillBehavior="HoldEnd" Storyboard.TargetName="brushLight" Storyboard.TargetProperty="Opacity"
|
|
|
15 |
Duration="0:0:0.4"/>
|
|
|
16 |
</Storyboard>
|
|
|
17 |
</UserControl.Resources>
|
|
|
18 |
<Grid x:Name="LayoutRoot" Background="Transparent" MouseMove="LayoutRoot_MouseMove" MouseEnter="LayoutRoot_MouseEnter" MouseLeave="LayoutRoot_MouseLeave" Cursor="Hand">
|
|
|
19 |
<Rectangle Fill="#20000000" Stroke="White" StrokeThickness="0.3" Margin="0.3" IsHitTestVisible="False" />
|
|
|
20 |
<Rectangle IsHitTestVisible="False">
|
|
|
21 |
<Rectangle.Fill>
|
|
|
22 |
<RadialGradientBrush RadiusX="0.7253" RadiusY="1" GradientOrigin="0.5,0.5" Center="0.5,0.5" x:Name="brushLight" Opacity="0">
|
|
|
23 |
<GradientStop Offset="0" Color="#fFffffff"/>
|
|
|
24 |
<GradientStop Offset="0.6" Color="#ffD8935F" x:Name="transitionColor"/>
|
|
|
25 |
<GradientStop Offset="0.8" Color="#3fD8935F" x:Name="transitionSubColor"/>
|
|
|
26 |
</RadialGradientBrush>
|
|
|
27 |
</Rectangle.Fill>
|
|
|
28 |
</Rectangle>
|
|
|
29 |
<Image x:Name="imgItem" Source="home.png" Stretch="Uniform" IsHitTestVisible="False" Margin="4" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
30 |
</Grid>
|
|
|
31 |
</UserControl>
|