Fix multiple poller situational problems

This commit is contained in:
Felix Weiß
2023-07-27 19:03:02 +02:00
parent 1f33ebb8d3
commit 38b83affd7
32 changed files with 1243 additions and 130 deletions

View File

@@ -0,0 +1,14 @@
using MewtocolNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Examples.WPF.ViewModels;
public class PlcDataViewViewModel : ViewModelBase {
public IPlc Plc => App.ViewModel.Plc!;
}