You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aucma.Scada/Aucma.Scada.UI/Page/AssemblyPlan/QuantityIssuedWindow.xaml.cs

22 lines
578 B
C#

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