终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

55 rivejä
1.9 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Toolkit.Mvvm.ComponentModel;
  7. using System.Collections.ObjectModel;
  8. using Microsoft.Toolkit.Mvvm.Input;
  9. using BPASmartClient.Helper;
  10. using BPASmartClient.DosingHKProject.Model;
  11. using BPASmartClient.CustomResource.Pages.Model;
  12. namespace BPASmartClient.DosingHKProject.ViewModel
  13. {
  14. public class RecipeInfosViewModel : ObservableObject
  15. {
  16. public RecipeInfosViewModel()
  17. {
  18. ActionManage.GetInstance.CancelRegister("RecipeInfo");
  19. ActionManage.GetInstance.Register(new Action<object>((o) =>
  20. {
  21. if (o != null && o is RemoteRecipeData rm)
  22. {
  23. RecipeName = rm.RecipeName;
  24. RecipeCode = rm.RecipeCode;
  25. TrayCode = rm.TrayCode;
  26. foreach (var item in rm.RawMaterial)
  27. {
  28. RawMaterialsInfo.Add(item);
  29. }
  30. }
  31. }), "RecipeInfo");
  32. ReturnPage = new RelayCommand(() =>
  33. {
  34. ActionManage.GetInstance.Send("CloseRecipeInfosView");
  35. });
  36. }
  37. public string RecipeName { get { return _mRecipeName; } set { _mRecipeName = value; OnPropertyChanged(); } }
  38. private string _mRecipeName;
  39. public string RecipeCode { get { return _mRecipeCode; } set { _mRecipeCode = value; OnPropertyChanged(); } }
  40. private string _mRecipeCode;
  41. public int TrayCode { get { return _mTrayCode; } set { _mTrayCode = value; OnPropertyChanged(); } }
  42. private int _mTrayCode;
  43. public RelayCommand ReturnPage { get; set; }
  44. public ObservableCollection<RemoteRecipeRawMaterial> RawMaterialsInfo { get; set; } = new ObservableCollection<RemoteRecipeRawMaterial>();
  45. }
  46. }