good multithreaded animation samples

  • Thread starter Thread starter D H
  • Start date Start date
D

D H

Hi,
Can anyone suggest some good source code examples of using
animation and threads in C#. Either with GDI+ (system.drawing) or
directx/opengl embedded in a window?

Thanks, I've only been able to find a handful. I'm used to java
where there are hundreds of animation examples. I'll have to try
converting some of them I guess.

-Doug
 
Check out Bob Powell's pages (link below) - there may be some examples
there. You could also try the dotnet.framework.drawing newsgroup. In terms
of OpenGL I've used the Tao C# bindings (find it on Google) which gives you
a Forms control you can embed, and that seems to work well.

Always bear in mind the golden rule that you can't do pretty much anything
to a Windows Forms control outside the main UI thread without odd things
happening.

Steve

GDI+ FAQ:
http://www.bobpowell.net/faqmain.htm
 
Back
Top