Exemple #1
0
        public static AnimatedImage BeeFactory(
            double width, double height, TimeSpan flapInterval)
        {
            List <string> imageNames = new List <string>();

            imageNames.Add("Bee animation 1.png");
            imageNames.Add("Bee animation 2.png");
            imageNames.Add("Bee animation 3.png");
            imageNames.Add("Bee animation 4.png");

            AnimatedImage bee = new AnimatedImage(imageNames, flapInterval);

            bee.Width  = width;
            bee.Height = height;
            return(bee);
        }
Exemple #2
0
        public static void MakeBeeMove(AnimatedImage bee,
                                       double fromX, double toX, double y)
        {
            Canvas.SetTop(bee, y);
            Storyboard      storyboard = new Storyboard();
            DoubleAnimation animation  = new DoubleAnimation();

            Storyboard.SetTarget(animation, bee);
            Storyboard.SetTargetProperty(animation,
                                         new PropertyPath(Canvas.LeftProperty));
            animation.From           = fromX;
            animation.To             = toX;
            animation.Duration       = TimeSpan.FromSeconds(3);
            animation.RepeatBehavior = RepeatBehavior.Forever;
            animation.AutoReverse    = true;
            storyboard.Children.Add(animation);
            storyboard.Begin();
        }
Exemple #3
0
 public static void SetBeeLocation(AnimatedImage bee, double x, double y)
 {
     Canvas.SetLeft(bee, x);
     Canvas.SetTop(bee, y);
 }