Exemplo n.º 1
0
        public override void Draw(GraphicsBase g)
        {
            if (LastDrawTime == DateTime.MinValue)
            {
                LastDrawTime = DateTime.Now;
            }
            Point newPoint = RePoint(g);

            g.DrawString(this.Content, this.Font, this.Brush, newPoint);

            LastPoint    = newPoint;
            LastDrawTime = DateTime.Now;
        }
Exemplo n.º 2
0
 public override void Draw(GraphicsBase g)
 {
     g.DrawString(this.Content, this.Font, this.Brush, new PointF(Location.X, Location.Y));
 }