XCAD.NET
XCAD.NET
Framework for .NET (C# and VB.NET) to create modern application for CAD systems (SOLIDWORKS, SOLIDWORKS Document Manager, Autodesk Inventor, etc.)
Get technical support Connect to xCAD community on Discord server Explore code and application examples xCAD.NET Templates for Visual Studio and VS Code Access source code

Displaying Windows or WPF form popup in SOLIDWORKS using xCAD


Windows Form Popup
Windows Form Popup

xCAD framework allows to show custom Windows Form and WPF Window as a popup window.

WPF Popup
WPF Popup

Framework will automatically assign SOLIDWORKS window as a parent window for the forms.

var winFormPopupWnd = this.CreatePopupWindow<WinForm>();
winFormPopupWnd.ShowDialog();

var wpfPopupWnd = this.CreatePopupWindow<WpfWindow>();
wpfPopupWnd.ShowDialog();


Powered by Docify