using Aucma.Scada.Model.domain; using Aucma.Scada.UI.viewModel.AssemblyPlan; using System.Windows; namespace Aucma.Scada.UI.Page.AssemblyPlan { /// /// QuantityIssuedWindow.xaml 的交互逻辑,下达数量 /// public partial class QuantityIssuedWindow : Window { private QuantityIssuedViewModel viewModel = null; public QuantityIssuedWindow(ProductPlanInfo productPlanInfo) { InitializeComponent(); this.DataContext = new QuantityIssuedViewModel(productPlanInfo); } } }