Animation with C#

  • Thread starter Thread starter Du Dang
  • Start date Start date
D

Du Dang

I'm trying to create an elevator sim, but I'm a newbie and I don't where to
start. Could someone point me to the right direct?

This program is just like one of those 2D games in the early 90's, boxes
moving up and down with some music in the background ... Should I stick with
C# system.drawing namespace or should I go into directx and stuff like that
(just guessing here) ???

Any help is greatly appreciated !!!
 
Du Dang,

It largely depends on how fast you want it to run. If you can live with
relatively slow drawing you can do it with GDI+. To get any degree of
performance you should use DirectX. The managed (i.e. C#) API is fairly
easy to work with.
 
Back
Top