using Aucma.Core.PrintTo.ViewModels; using System.Windows; namespace Aucma.Core.PrintTo.Views { /// /// SupplementView.xaml 的交互逻辑 /// public partial class SupplementView : Window { #region 构造函数 /// /// 构造函数 /// /// 主键 public SupplementView(int Id) { InitializeComponent(); this.DataContext = new SupplementViewModel(Id); } #endregion } }