Beispiel #1
0
 public ReportWindow(TimerEngine t, WorkWinderDisplay d, FileMechanism f)
 {
     InitializeComponent();
     DISPLAY    = d;
     FILEMECH   = f;
     TIMEENGINE = t;
     initializeWindow();
 }
Beispiel #2
0
 public WorkWinderDisplay()
 {
     InitializeComponent();
     initializeTimers();
     theme = new xColors();
     initializeColors();
     initializeTLP(ref baseTLP);
     TIMEENGINE = new TimerEngine(this, FILEMECH);
     FILEMECH   = new FileMechanism(TIMEENGINE, this);
     CONFDIS    = new ReportWindow(TIMEENGINE, this, FILEMECH);
 }
Beispiel #3
0
 public FileMechanism(TimerEngine t, WorkWinderDisplay w)
 {
     DISPLAY    = w;
     TIMEENGINE = t;
 }