终端一体化运控平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

30 linhas
909 B

  1. using BPASmartClient.FoodStationTest.Model;
  2. using BPA.Helper;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. namespace BPASmartClient.FoodStationTest.ViewModel
  6. {
  7. public class ManualCommViewModel : NotifyBase
  8. {
  9. public ManualCommViewModel()
  10. {
  11. PlcDataColl.Add(new VarMonitor() { SerialNum = PlcDataColl.Count, Address = "", });
  12. SetParCommand = new BPARelayCommand<object>((o) =>
  13. {
  14. if (o != null && o is string address)
  15. {
  16. var res = PlcDataColl.FirstOrDefault(p => p.Address == address);
  17. }
  18. });
  19. }
  20. public static ObservableCollection<VarMonitor> PlcDataColl { get; set; } = new ObservableCollection<VarMonitor>();
  21. public BPARelayCommand<object> SetParCommand { get; set; }
  22. public BPARelayCommand Connect { get; set; }
  23. }
  24. }