public NewReportView()
 {
     InitializeComponent();
     CurrentVM              = new ReportVM();
     this.DataContext       = CurrentVM;
     SaveButton.IsEnabled   = false;
     TimeDatePicker.Text    = DateTime.Now.ToString();
     PredictionAndRealFalls = AssessmentAndlFallsVM.Instance;
 }
Exemple #2
0
 public NewFallView()
 {
     InitializeComponent();
     CurrentVM              = new FallsVM();
     this.DataContext       = CurrentVM;
     SaveButton.IsEnabled   = true;
     TimeDatePicker.Text    = DateTime.Now.ToString();
     defaultPath            = Image.Source;
     PredictionAndRealFalls = AssessmentAndlFallsVM.Instance;
 }