调整代码
This commit is contained in:
22
ShrlAlgoToolkit.RevitAddins/Mep/CableLayoutView.xaml.cs
Normal file
22
ShrlAlgoToolkit.RevitAddins/Mep/CableLayoutView.xaml.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Autodesk.Revit.DB;
|
||||
|
||||
using ShrlAlgoToolkit.RevitAddins.RvMEP;
|
||||
using ShrlAlgoToolkit;
|
||||
using ShrlAlgoToolkit.RevitAddins;
|
||||
|
||||
namespace ShrlAlgoToolkit.RevitAddins.Mep;
|
||||
|
||||
/// <summary>
|
||||
/// CableLayoutView.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class CableLayoutView
|
||||
{
|
||||
public CableLayoutViewModel ViewModel = null;
|
||||
|
||||
public CableLayoutView(Document doc)
|
||||
{
|
||||
ViewModel = new CableLayoutViewModel(doc);
|
||||
DataContext = ViewModel;
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user