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,string barType) { InitializeComponent(); this.DataContext = new SupplementViewModel(Id, barType); } #endregion } }