Laservall_solidworks_inject/Pane/PartPropPaneUserControl.xam...

21 lines
486 B
C#
Raw Permalink Normal View History

using System.Windows.Controls;
2025-10-10 13:22:56 +08:00
using Xarial.XCad.SolidWorks.UI;
namespace Laservall.Solidworks.Pane
{
public partial class PartPropPaneUserControl : UserControl
{
public ISwTaskPane<PartPropPaneUserControl> pane;
public PartPropPaneViewModel ViewModel { get; }
2025-10-10 13:22:56 +08:00
public PartPropPaneUserControl()
2025-10-10 13:22:56 +08:00
{
InitializeComponent();
ViewModel = new PartPropPaneViewModel();
DataContext = ViewModel;
}
2025-10-10 13:22:56 +08:00
}
}