整理代码
This commit is contained in:
20
ShrlAlgoToolkit.RevitAddins/RvMEP/CableLayoutView.xaml.cs
Normal file
20
ShrlAlgoToolkit.RevitAddins/RvMEP/CableLayoutView.xaml.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Autodesk.Revit.DB;
|
||||
|
||||
using System.Windows;
|
||||
|
||||
namespace ShrlAlgo.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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user