Reputation: 11477
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
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