private void Button4_Click(object sender, RoutedEventArgs e)
        {
            var easingFunction = EasingComboBox.SelectedValue as EasingFunctionBase;

            easingFunction.EasingMode = GetEaseValue();
            (Storyboard4.Children[0] as DoubleAnimation).EasingFunction = easingFunction;

            Storyboard4.Children[0].SetValue(DoubleAnimation.FromProperty, Translation4.X);
            Storyboard4.Children[0].SetValue(DoubleAnimation.ToProperty, Translation4.X > 0 ? 0 : 200);
            Storyboard4.Begin();
        }
Ejemplo n.º 2
0
 void menu_Yes_Tap(object sender, System.Windows.Input.GestureEventArgs e)
 {
     // Storyboard3.AutoReverse = true;
     // Storyboard3.Begin();
     //  Storyboard3.SeekAlignedToLastTick(new TimeSpan(0, 0, 0, 0, 200));
     Storyboard4.Begin();
     layer.Children.Remove(polygon);
     layer.Children.Remove(line);
     control_Menu.Visibility        = Visibility.Collapsed;
     control_TiemMenu.Visibility    = Visibility.Visible;
     control_TiemMenu.btn_Send.Tap += new EventHandler <System.Windows.Input.GestureEventArgs>(btn_Send_Tap);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Handles the Click event of the btnCancel2 control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
 private void btnCancel2_Click(object sender, RoutedEventArgs e)
 {
     //spSource.Visibility = System.Windows.Visibility.Visible;
     spTable.Visibility     = System.Windows.Visibility.Collapsed;
     spAssocUser.Visibility = System.Windows.Visibility.Collapsed;
     tbStep1.Foreground     = new SolidColorBrush(Color.FromArgb(255, 0, 0, 0));
     rectStep1.Fill         = new SolidColorBrush(Color.FromArgb(255, 38, 198, 48));
     tbStep2.Foreground     = new SolidColorBrush(Color.FromArgb(255, 122, 122, 122));
     rectStep2.Fill         = new SolidColorBrush(Color.FromArgb(255, 122, 122, 122));
     tbStep3.Foreground     = new SolidColorBrush(Color.FromArgb(255, 122, 122, 122));
     rectStep3.Fill         = new SolidColorBrush(Color.FromArgb(255, 122, 122, 122));
     Storyboard4.Begin();
 }
Ejemplo n.º 4
0
        void timer_Tick(object sender, object e)
        {
            maxTime--;
            timeleft.Text = maxTime.ToString();

            if (maxTime == 0)
            {
                timer.Stop();
                //stopStoryboard1();
                this.Frame.Navigate(typeof(Zombiescorepage));
            }

            if (maxTime == 9)
            {
                Storyboard2.Begin();
            }
            if (maxTime == 8)
            {
                Storyboard3.Begin();
            }
            if (maxTime == 7)
            {
                Storyboard4.Begin();
            }
            if (maxTime == 6)
            {
                Storyboard5.Begin();
            }
            if (maxTime == 5)
            {
                Storyboard6.Begin();
            }
            if (maxTime == 4)
            {
                Storyboard7.Begin();
            }
            if (maxTime == 3)
            {
                Storyboard8.Begin();
            }
            if (maxTime == 2)
            {
                Storyboard9.Begin();
            }
            if (maxTime == 1)
            {
                Storyboard10.Begin();
            }
        }
Ejemplo n.º 5
0
        private void Image_Tapped(object sender, TappedRoutedEventArgs e)
        {
            timer          = new DispatcherTimer();
            timer.Interval = TimeSpan.FromSeconds(1);
            timer.Tick    += timer_Tick;
            timer.Start();

            x = x + 1;

            Storyboard2.Begin();
            Storyboard3.Begin();
            Storyboard4.Begin();
            Storyboard5.Begin();
            Storyboard6.Begin();
            Storyboard7.Begin();
            Storyboard8.Begin();
            Storyboard9.Begin();
            Storyboard10.Begin();
            Storyboard11.Begin();
            Storyboard12.Begin();
        }
Ejemplo n.º 6
0
        void timer_Tick(object sender, EventArgs e)
        {
            // image10.Clip = new RectangleGeometry() { Rect = new Rect(0, 0, image10.Width / 2, image10.Height / 2) };
            int i = r.Next(12);
            int j = r.Next(5);

            switch (i)
            {
            case 1:
                image1.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative));    Storyboard1.Begin(); break;

            case 2: image2.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative));  Storyboard2.Begin(); break;

            case 3: image3.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); Storyboard3.Begin(); break;

            case 4: image4.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); Storyboard4.Begin(); break;

            case 5: image5.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); Storyboard5.Begin(); break;

            case 6: image6.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); Storyboard6.Begin(); break;

            case 7: image7.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); Storyboard7.Begin(); break;

            case 8: image8.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); Storyboard8.Begin(); break;

            case 9: image9.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); Storyboard9.Begin(); break;

            case 10: image10.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); image10.Visibility = Visibility.Collapsed; break;

            case 11: image10.Visibility = Visibility.Visible; break;
                //case 10:
                //    {
                //        //timer.Stop();
                //        //int jj = r.Next(4);

                //       // image10.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + j + ".jpg", UriKind.Relative)); image10.Clip = new RectangleGeometry() { Rect = new Rect(0, 0, 60, 60) }; Storyboard1.Begin(); break;
                //        //image1.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + jj + ".jpg", UriKind.Relative)); image1.Height = 60; image1.Width = 60; image1.Clip = new RectangleGeometry() { Rect = new Rect(0, 0, 30, 30) };  image1.Width = 60; image1.Height = 60; Storyboard1.Begin();
                //        //image2.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + jj + ".jpg", UriKind.Relative)); image2.Height = 60; image2.Width = 60; image2.Clip = new RectangleGeometry() { Rect = new Rect(30, 0, 30, 30) }; image2.Width = 120; image2.Height = 120; Storyboard2.Begin();
                //        //image5.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + jj + ".jpg", UriKind.Relative)); image5.Height = 120; image5.Width = 120; image5.Clip = new RectangleGeometry() { Rect = new Rect(0, 60, 60, 60) }; Storyboard5.Begin();
                //        //image4.Source = new BitmapImage(new Uri("/Image_Home/Avatar/" + jj + ".jpg", UriKind.Relative)); image4.Height = 120; image4.Width = 120; image4.Clip = new RectangleGeometry() { Rect = new Rect(60,60, 60, 60) }; Storyboard4.Begin();

                //    }break;
            }
            ;



            // if (i == 1)
            // Storyboard1.Begin();
            //  else
            // Storyboard2.Begin();
        }
Ejemplo n.º 7
0
        //void image_OK_Tap(object sender, System.Windows.Input.GestureEventArgs e)
        //{
        //    TitlePanel.Opacity = 1;
        //    ContentPanel.Opacity = 1;
        //    ContentPanel.IsHitTestVisible = true;
        //    control_Post_FillMessage.Visibility = Visibility.Collapsed;
        //}

        private void dealWithContentMenu()
        {
            MenuContent.Children.Clear();
            MenuContent.Children.Add(control_Post_FillMessage);
            Storyboard4.Begin();
        }
Ejemplo n.º 8
0
 private void tile5_Tap(object sender, System.Windows.Input.GestureEventArgs e)
 {
     //Storyboard4.AutoReverse = true;
     Storyboard4.Begin();
     NavigationService.Navigate(new Uri("/Views/DataPage1.xaml", UriKind.Relative));
 }
Ejemplo n.º 9
0
 private void Storyboard4_Completed(object sender, object e)
 {
     Storyboard4.Begin();
 }
Ejemplo n.º 10
0
 private void textBlock_MouseLeave(object sender, MouseEventArgs e)
 {
     Storyboard4.Begin();
 }