18 lines
308 B
C#
18 lines
308 B
C#
using System.Windows;
|
|
|
|
namespace ShrlAlgoStudio.RevitLess;
|
|
|
|
/// <summary>
|
|
/// RevitLessView.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class RevitLessView : Window
|
|
{
|
|
public RevitLessView()
|
|
{
|
|
this.DataContext = new RevitLessViewModel();
|
|
InitializeComponent();
|
|
}
|
|
|
|
|
|
}
|