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.Core.BoxFoam/Views/QuantityIssuedView.xaml.cs

25 lines
602 B
C#

1 year ago
using Aucma.Core.BoxFoam.Models;
using Aucma.Core.BoxFoam.ViewModels;
using System.Windows;
namespace Aucma.Core.BoxFoam.Views
{
/// <summary>
/// QuantityIssuedView.xaml 的交互逻辑
/// </summary>
public partial class QuantityIssuedView : Window
{
public QuantityIssuedView()
{
InitializeComponent();
}
1 year ago
public QuantityIssuedView(ProductPlanInfoModel productPlanInfo,string objId)
{
InitializeComponent();
1 year ago
this.DataContext = new QuantityIssuedViewModel(productPlanInfo, objId);
}
}
}