Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<UserControl x:Class="pokeTVisionPremium.AnimatedSplashScreen"
             xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    d:DesignHeight="480" d:DesignWidth="480" Height="800">

    <UserControl.Resources>
        <Storyboard x:Key="flippingAnimation" >
            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationX)" Storyboard.TargetName="logoImage">
                <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
                <EasingDoubleKeyFrame KeyTime="0:0:1" Value="1"/>
                <EasingDoubleKeyFrame KeyTime="0:0:2" Value="360"/>
            </DoubleAnimationUsingKeyFrames>
            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Foreground" Storyboard.TargetName="text">
                <DiscreteObjectKeyFrame KeyTime="0">
                    <DiscreteObjectKeyFrame.Value>
                        <SolidColorBrush Color="Brown"/>
                    </DiscreteObjectKeyFrame.Value>
                </DiscreteObjectKeyFrame>
                <DiscreteObjectKeyFrame KeyTime="0:0:2">
                    <DiscreteObjectKeyFrame.Value>
                        <SolidColorBrush Color="Black"/>
                    </DiscreteObjectKeyFrame.Value>
                </DiscreteObjectKeyFrame>
            </ObjectAnimationUsingKeyFrames>
        </Storyboard>
    </UserControl.Resources>


    <StackPanel x:Name="LayoutRoot" Background="Black" Height="800" Width="480">



        <!--<Image Source="/SplashSreenAnimatedTest;component/LogoNextrekBlack.png" x:Name="logoImage" Stretch="Fill" Margin="0,0,0,50" >
            <Image.Projection>
                <PlaneProjection/>
            </Image.Projection>
        </Image>-->
        <StackPanel>
            <Canvas Height="800" Width="480" >
                <Canvas.Background>
                    <ImageBrush ImageSource="/pokeTVisionPremium;component/slpashscreenAnimat.png" />
                </Canvas.Background>
            </Canvas>
        </StackPanel>



        <StackPanel>
            <Image Source="/pokeTVisionPremium;component/iconTV2.png" x:Name="logoImage" Height="117" Width="186" Stretch="Fill" Margin="120,-300,0,0" >
                <Image.Projection>
                    <PlaneProjection/>
                </Image.Projection>
            </Image>
        </StackPanel>


        <StackPanel Margin="-280,0,0,0">
            <toolkit:PerformanceProgressBar IsIndeterminate="True" Margin="0,0,0,0" Width="728" Height="20" Foreground="White" FlowDirection="RightToLeft" IsEnabled="True" IsHitTestVisible="False" IsTabStop="True" Opacity="100" TabNavigation="Local">
                <toolkit:PerformanceProgressBar.RenderTransform>
                    <CompositeTransform Rotation="-90"/>
                </toolkit:PerformanceProgressBar.RenderTransform>
            </toolkit:PerformanceProgressBar>
        </StackPanel>

        <StackPanel Margin="0,-460,0,0">
            <TextBlock Text="NextRek Solutions" TextAlignment="Center" x:Name="text" Foreground="Brown" FontSize="16" TextWrapping="Wrap" Margin="0,20,0,0">
                <TextBlock.RenderTransform>
                    <CompositeTransform Rotation="-90"/>
                </TextBlock.RenderTransform>
            </TextBlock>
        </StackPanel>

    </StackPanel>
</UserControl>

Commits for Nextrek/WindowsPhone/pokeTVisionPremium/pokeTVisionPremium/AnimatedSplashScreen.xaml

Diff revisions: vs.
Revision Author Commited Message
6 FMMortaroli picture FMMortaroli Sat 20 Apr, 2013 15:30:47 +0000