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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace NotizieTL
{
    public partial class AnimatedSplashScreen : UserControl
    {
        public AnimatedSplashScreen()
        {
            InitializeComponent();
            Storyboard flippingAnimation = this.Resources["flippingAnimation"] as Storyboard;
            flippingAnimation.Begin();
        }
    }
}

Commits for Nextrek/WindowsPhone/NotizieTL/NotizieTL/AnimatedSplashScreen.xaml.cs

Diff revisions: vs.
Revision Author Commited Message
39 LTardio picture LTardio Wed 24 Jul, 2013 18:54:33 +0000