This class is in control of BlockHead. It has a window to interact with the user and an acquisitor to take the data.
Inheritance: System.MarshalByRefObject
Beispiel #1
0
 public LiveViewer(Controller c)
 {
     InitializeComponent();
     controller = c;
 }
Beispiel #2
0
 // This is the right way to get a reference to the controller. You shouldn't create a
 // controller yourself.
 public static Controller GetController()
 {
     if (controllerInstance == null)
     {
         controllerInstance = new Controller();
     }
     return controllerInstance;
 }