Esempio n. 1
0
        public StiLinesAnimationGeom(StiPenGeom pen, PointF[] points, TimeSpan duration, TimeSpan?beginTime, StiAnimationType animationType)
            : base(duration, beginTime)
        {
            this.Pen    = pen;
            this.Points = points;

            this.AnimationType = animationType;
        }
        public StiBorderAnimationGeom(object background, StiPenGeom borderPen, object rect, TimeSpan duration, TimeSpan?beginTime, StiAnimationType animationType) :
            base(duration, beginTime)
        {
            this.Background = background;
            this.BorderPen  = borderPen;
            this.Rect       = rect;

            this.AnimationType = animationType;
        }
 public StiEllipseAnimationGeom(object background, StiPenGeom borderPen, object rect, TimeSpan duration, TimeSpan?beginTime, StiAnimationType animationType, string toolTip, object tag)
     : base(duration, beginTime)
 {
     this.Background    = background;
     this.BorderPen     = borderPen;
     this.Rect          = rect;
     this.AnimationType = animationType;
     this.ToolTip       = toolTip;
     this.Tag           = tag;
 }
Esempio n. 4
0
 public void FillDrawAnimationEllipse(object brush, StiPenGeom pen, float x, float y, float width, float height, TimeSpan durationOpacity, TimeSpan?beginTimeOpacity, StiAnimationType animationType, string toolTip, object tag)
 {
     geoms.Add(new StiEllipseAnimationGeom(brush, pen, new RectangleF(x, y, width, height), durationOpacity, beginTimeOpacity, animationType, toolTip, tag));
 }
Esempio n. 5
0
 public void DrawAnimationLines(StiPenGeom pen, PointF[] points, TimeSpan duration, TimeSpan?beginTime, StiAnimationType animationType)
 {
     geoms.Add(new StiLinesAnimationGeom(pen, points, duration, beginTime, animationType));
 }