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

26 lines
628 B
C#

using Admin.Core.Model;
using Aucma.Scada.UI.ViewModel.AssemblyPlan;
1 year ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Aucma.Scada.UI.Page.AssemblyPlan
{
/// <summary>
/// QuantityIssuedWindow.xaml 的交互逻辑,下达数量
/// </summary>
public partial class QuantityIssuedWindow : Window
{
public QuantityIssuedWindow(ProductPlanInfo productPlanInfo)
{
InitializeComponent();
this.DataContext = new QuantityIssuedViewModel(productPlanInfo);
}
}
}