Example #1
0
        public TerminalVM()
        {
            myPort = new SerialPortsM();
            myPort.PropertyChanged += MyPort_PropertyChanged; ;
            myPort.RefreshPortsList();

            TextCount = 500;
            IsPause = true;
        }
Example #2
0
 public InterfaceVM()
 {
     port = new SerialPortsM();
     port.PropertyChanged += Port_PropertyChanged;
     port.RefreshPortsList();
 }