16 lines
289 B
C#
16 lines
289 B
C#
|
|
namespace RevitLess
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// MainWindow.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class MainWindow
|
|||
|
|
{
|
|||
|
|
public MainWindow()
|
|||
|
|
{
|
|||
|
|
DataContext = new MainWindowViewModel();
|
|||
|
|
InitializeComponent();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|