Mongus Pong
Mongus Pong

Reputation: 11477

Simple animation library for a bit of flash

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?

Upvotes: 1

Views: 343

Answers (2)

Seth Moore
Seth Moore

Reputation: 3545

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.

Upvotes: 2

Fermin
Fermin

Reputation: 36111

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

Upvotes: 2

Related Questions