2026-04-09 17:06:24 +08:00
|
|
|
|
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;
|
|
|
|
|
|
|
2026-04-09 17:06:24 +08:00
|
|
|
|
public PartPropPaneViewModel ViewModel { get; }
|
2025-10-10 13:22:56 +08:00
|
|
|
|
|
2026-04-09 17:06:24 +08:00
|
|
|
|
public PartPropPaneUserControl()
|
2025-10-10 13:22:56 +08:00
|
|
|
|
{
|
2026-04-09 17:06:24 +08:00
|
|
|
|
InitializeComponent();
|
2026-03-20 09:33:27 +08:00
|
|
|
|
|
2026-04-09 17:06:24 +08:00
|
|
|
|
ViewModel = new PartPropPaneViewModel();
|
|
|
|
|
|
DataContext = ViewModel;
|
2026-03-20 09:33:27 +08:00
|
|
|
|
}
|
2025-10-10 13:22:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|