20 lines
384 B
C#
20 lines
384 B
C#
|
|
using System.Windows;
|
|||
|
|
using Autodesk.Revit.DB;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.RvMEP;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// CableLayoutView.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class CableLayoutView
|
|||
|
|
{
|
|||
|
|
public CableLayoutViewModel ViewModel = null;
|
|||
|
|
|
|||
|
|
public CableLayoutView(Document doc)
|
|||
|
|
{
|
|||
|
|
ViewModel = new CableLayoutViewModel(doc);
|
|||
|
|
DataContext = ViewModel;
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|