Beispiel #1
0
 public TaskThreeViewModel(HelperClass.IDialogService dialogService,
                           HelperClass.IHelixToolKitService helixService, bool paintBoundingBox)
 {
     this.IDialogService       = dialogService;
     this.IHelixToolKitService = helixService;
     this.PaintBoundBox        = paintBoundingBox;
 }
Beispiel #2
0
 public TaskFiveViewModel(HelperClass.IDialogService dialogService,
                          HelperClass.IHelixToolKitService helixService)
 {
     MinValue                  = -25;
     MaxValue                  = 5;
     this.timer                = new DispatcherTimer();
     this.timer.Interval       = TimeSpan.FromMilliseconds(100);
     this.timer.Tick          += timer_Tick;
     this.IDialogService       = dialogService;
     this.IHelixToolKitService = helixService;
     this.translate3D          = new TranslateTransform3D();
 }