终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

30 řádky
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. }