I have a 3D file with the suffix. STL, According to GroupDocs.Viewer, can it view in the WinForm Application?
does GroupDocs.Viewer have WinForm UI Control?
Yes, you can use GroupDocs.Viewer for .NET in your WinForms application. The API doesn’t contain any built-in control or the UI, instead, you will have to create it on your own. The API provides the following ways to render a document/file:
- [HTML-based rendering]Render to HTML | Documentation): Each page of the document is rendered into an HTML page.
- Image-based rendering: Each page of the document is rendered as an image (PNG/JPG).
Once you have the rendered HTML pages or images, you can display them in your application. For example, you can use a WebBrowser control for viewing HTML pages or PictureBox control for viewing images in your WinForms application.
Thank you so much for your answer