Ejemplo n.º 1
0
 public videoWindow(int _port, monitors monitorToDisplayOn, string monitorID) {
     InitializeComponent();
     port = _port;
     VSR = new videoSocketReceiver(port, connectionCallback);
     targetMonitor = monitorToDisplayOn;
     monitorIDLabel.Content = monitorID;
 }
Ejemplo n.º 2
0
 public videoWindow(int _port, monitors monitorToDisplayOn, string _name) {
     InitializeComponent();
     port = _port;
     VSR = new videoSocketReceiver(port, connectionCallback);
     targetMonitor = monitorToDisplayOn;
     name = _name;
 }