public RemoteTextboxScreen(ICameraToServerBus cameraHubProxy, TextBox textbox) : base(cameraHubProxy)
 {
     _textBox = new TextboxScreen(textbox);
 }
Esempio n. 2
0
 public RemoteTextboxScreen(ICameraToServerBus cameraHubProxy, TextBox textbox)
     : base(cameraHubProxy)
 {
     _textBox = new TextboxScreen(textbox);
 }
Esempio n. 3
0
 public RemoteConsoleScreen(ICameraToServerBus cameraToServerBus) : base(cameraToServerBus)
 {
     _console = new ConsoleScreen();
 }
Esempio n. 4
0
 public IpReporter(ICameraToServerBus cameraToServerBus)
 {
     _cameraToServerBus = cameraToServerBus;
 }
Esempio n. 5
0
 public RemoteScreen(ICameraToServerBus cameraHubProxy)
 {
     _cameraHubProxy = cameraHubProxy;
     Enabled = true;
 }
Esempio n. 6
0
 public IpReporter(ICameraToServerBus cameraToServerBus)
 {
     _cameraToServerBus = cameraToServerBus;
 }
Esempio n. 7
0
 public RemoteScreen(ICameraToServerBus cameraHubProxy)
 {
     _cameraHubProxy = cameraHubProxy;
     Enabled         = true;
 }
Esempio n. 8
0
 public RemoteConsoleScreen(ICameraToServerBus cameraToServerBus)
     : base(cameraToServerBus)
 {
     _console = new ConsoleScreen();
 }