2025-02-10 20:53:40 +08:00
|
|
|
|
using Autodesk.Revit.DB;
|
|
|
|
|
|
|
2026-02-22 20:03:42 +08:00
|
|
|
|
using ShrlAlgoToolkit.RevitAddins.RvMEP;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.Mep;
|
2025-02-10 20:53:40 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// CableLayoutView.xaml 的交互逻辑
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class CableLayoutView
|
|
|
|
|
|
{
|
|
|
|
|
|
public CableLayoutViewModel ViewModel = null;
|
|
|
|
|
|
|
|
|
|
|
|
public CableLayoutView(Document doc)
|
|
|
|
|
|
{
|
|
|
|
|
|
ViewModel = new CableLayoutViewModel(doc);
|
|
|
|
|
|
DataContext = ViewModel;
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|