Ejemplo n.º 1
0
 virtual public void AppTimer_Tick(object sender, EventArgs e)
 {
     Incrementor.IncrementY();
     // none of the widgets implement this guy.
     foreach (var widget in Widgets)
     {
         widget.Increment();
     }
     // draw
     Invalidate();
 }