using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WpfApplication1
{
class smthng
{
double x, y;
public smthng(Canvas canna)
{
Ellipse el;
el = new Ellipse();
el.Width = 50;
el.Height = 50;
el.Fill = Brushes.Green;
el.Stroke = Brushes.Black;
el.StrokeThickness = 1;
Canvas.SetLeft(el, x);
Canvas.SetTop(el, y);
el.StrokeDashArray = new DoubleCollection() { 1, 1 };
el.StrokeDashCap = PenLineCap.Round;
DoubleAnimation ANIMA = new DoubleAnimation();
ANIMA.From = Canvas.GetLeft(el);
ANIMA.To = Canvas.GetLeft(el) - 50;
ANIMA.Duration = TimeSpan.FromSeconds(1);
ANIMA.AutoReverse = true;
ANIMA.RepeatBehavior = RepeatBehavior.Forever;
PowerEase XBATITi = new PowerEase();
XBATITi.Power = 2;
XBATITi.EasingMode = EasingMode.EaseInOut;
ANIMA.EasingFunction = XBATITi;
el.BeginAnimation(Canvas.LeftProperty, ANIMA);
}
}
}