views:

40

answers:

1

I have a Silverlight application that uses Kit3D and I want to convert it to WPF.

How would I do that?

Should I do that?

+1  A: 

You could try downloading the source code from its Codeplex repository and recompiling with WPF as the target. No guarantees this will work without modifications, though, since WPF is not a complete superset of Silverlight. But according to the author's description on his web page, Kit3D is modeled after WPF's built-in Media3D namespace, so you could just use that directly rather than bother with a 3rd-party library.

Tim Trout