コード例 #1
0
 //constructor. voert automatisch uit na aanroep met "new ZorgApp()".
 public ZorgApp()
 {
     profileList   = new ProfileList();
     medicijnLijst = new MedicijnLijst();
     StartTimer();
     DisplayMenu();
 }
コード例 #2
0
ファイル: ZorgApp.cs プロジェクト: jipenburg/ZorgAppProto
 //constructor. voert automatisch uit na aanroep met "new ZorgApp()".
 public ZorgApp()
 {
     profileList   = new ProfileList();
     medicijnLijst = new MedicijnLijst();
     timer         = new Timer(new TimerCallback(Alarm));
     timer.Change(1000, 0);
     DisplayMenu();
 }