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