public CloseNetDebugging(DevicesPanel root, DeviceSerialNumber serial)
 {
     InitializeComponent();
     _serial   = serial;
     TBIP.Text = serial.ToString();
     this.root = root;
 }
Example #2
0
 public OpenNetDebugging(DevicesPanel root, DeviceSerialNumber serial)
 {
     InitializeComponent();
     this.root = root;
     _serial   = serial;
 }
Example #3
0
 public NetDebuggingAdder(DevicesPanel root)
 {
     this.root = root;
     InitializeComponent();
 }