tags:

views:

39

answers:

2

I have a C# winforms project and I want to add a bit of jQuery or iPhone style animation flash to it.

Nothing too fancy just an easy way to slide and expand panels, perhaps a bit of rotation.

Is there a library out there that would do this all for me?

+2  A: 

If you're using .NET 3.5 you can use WPF to achieve animations.

Fermin
he would have to replace large parts of his application if he is using winforms now...
Petoj
+2  A: 

You can also inject WPF controls into your WinForms apps if you're wanting to add stuff in to an existing project. Here's a good tutorial on how it's done.

I'm not sure if it would work for drawing 3D or rotating (although it might), but you can def use WPF in your WinForms. I haven't tried using the expander myself, but other controls I've used worked just fine.

smoore
Very useful link - I didnt know you could do that!
Mongus Pong