public WorkBenchViewModel(AController _controller) : base(_controller)
 {
     Name           = "WorkBench";
     BCScanObject   = new BarCodeScanner();
     ReflectUIStack = new List <ReflectUI>(new ReflectUI[16]);
     for (int index = 0; index < 16; index++)
     {
         ReflectUIStack[index] = new ReflectUI();
     }
     TopIndex = -1;
 }
Exemple #2
0
 public aBenchViewModel(AController _controller)
 {
     TheController = _controller;
 }
Exemple #3
0
 public StartBenchViewModel(AController _controller) : base(_controller)
 {
     Name         = "StartBench";
     BCScanObject = new BarCodeScanner();
 }