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

Adding custom Windows Forms and WPF control into SOLIDWORKS Feature Manager using xCAD


Custom Feature Manager Tab
Custom Feature Manager Tab

xCAD framework allows to add custom Windows Forms controls and WPF controls into Feature Manager tabs.

This functionality is only available for Part and Assembly documents

Decorate the control classes with TitleAttribute and IconAttribute to assign a tab tooltip and icon.

var winFormFeatMgrTab = CreateFeatureManagerTab<WinFormControl>(Application.Documents.Active);
WinFormControl winFeatMgrFormCtrl = winFormFeatMgrTab.Control;

var wpfFeatMgrTab = CreateFeatureManagerTab<WpfControl>(Application.Documents.Active);
WpfControl wpfFeatMgrTabCtrl = wpfFeatMgrTab.Control;


Powered by Docify