21 lines
486 B
C#
21 lines
486 B
C#
using System.Windows.Controls;
|
|
using Xarial.XCad.SolidWorks.UI;
|
|
|
|
namespace Laservall.Solidworks.Pane
|
|
{
|
|
public partial class PartPropPaneUserControl : UserControl
|
|
{
|
|
public ISwTaskPane<PartPropPaneUserControl> pane;
|
|
|
|
public PartPropPaneViewModel ViewModel { get; }
|
|
|
|
public PartPropPaneUserControl()
|
|
{
|
|
InitializeComponent();
|
|
|
|
ViewModel = new PartPropPaneViewModel();
|
|
DataContext = ViewModel;
|
|
}
|
|
}
|
|
}
|