16 lines
440 B
C#
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|