Files
RevitArchive/RevitKits/WBSCoder/ProjectFileCheckerPage.xaml.cs
2026-02-23 14:58:05 +08:00

16 lines
440 B
C#

using System.Windows.Controls;
namespace Sai.Common.Shared.WBSCoder
{
/// <summary>
/// ProjectFileCheckerPage.xaml 的交互逻辑
/// </summary>
public partial class ProjectFileCheckerPage : Page
{
public ProjectFileCheckerPage(ProjectFileCheckerViewModel projectFileCheckerViewModel)
{
DataContext = projectFileCheckerViewModel;
InitializeComponent();
}
}
}