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