Click here to Skip to main content
15,893,486 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
if it is possible to allow rotating 3D images on a form?

What I have tried:

I have already implemented in WPF but requirement is in Windows Form.
Posted
Updated 7-Jun-18 1:59am
v2

1 solution

There is no built in control that's going to do this for you in Windows Forms. So, you can host the WPF control in a Windows Forms app.

If you wanted to create this kind of control yourself, you're in for a LOT of work. You're going to have to implement EVERYTHING from mouse controls to rendering.

Another option is a 3rd party control. You can find something like this in just about any WPF control package, but it's going to cost you a hefty chunk of money for these.

Walkthrough: Hosting a WPF Composite Control in Windows Forms | Microsoft Docs[^]
Mixing WPF and WinForms - Simple Talk[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900