添加项目文件。
This commit is contained in:
19
Sai.RvKits/RvMEP/CableLayoutView.xaml.cs
Normal file
19
Sai.RvKits/RvMEP/CableLayoutView.xaml.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user