forked from amkovkov/GranuSightSoftware2
feat: results exporting
This commit is contained in:
@@ -20,6 +20,7 @@ public partial class AmineContentViewModel : ViewModelBase
|
||||
[ObservableProperty] public partial SeparatorCalibrationViewModel SeparatorCalibration { get; set; }
|
||||
// [ObservableProperty] public partial CameraViewModel Camera { get; set; }
|
||||
[ObservableProperty] public partial BrandCalibrationViewModel BrandCalibration { get; set; }
|
||||
[ObservableProperty] public partial ExportViewModel Export { get; set; }
|
||||
// [ObservableProperty] public partial SystemViewModel System { get; set; }
|
||||
|
||||
[ObservableProperty] public partial int CurrentIndex { get; set; } = 0;
|
||||
@@ -31,7 +32,8 @@ public partial class AmineContentViewModel : ViewModelBase
|
||||
AnalysisViewModel analysis,
|
||||
SampleCalibrationViewModel sampleCalibration,
|
||||
SeparatorCalibrationViewModel separatorCalibration,
|
||||
BrandCalibrationViewModel brandCalibration
|
||||
BrandCalibrationViewModel brandCalibration,
|
||||
ExportViewModel export
|
||||
)
|
||||
{
|
||||
_navigationService = navigationService;
|
||||
@@ -39,6 +41,7 @@ public partial class AmineContentViewModel : ViewModelBase
|
||||
SampleCalibration = sampleCalibration;
|
||||
SeparatorCalibration = separatorCalibration;
|
||||
BrandCalibration = brandCalibration;
|
||||
Export = export;
|
||||
|
||||
PropertyChanged += (_, ea) =>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user