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