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

16 lines
460 B
C#

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