forked from amkovkov/GranuSightSoftware2
feat: amine content disable camera due unstable work
This commit is contained in:
@@ -16,7 +16,7 @@ public partial class AmineContentViewModel : ViewModelBase
|
||||
[ObservableProperty] public partial AnalysisViewModel Analysis { get; set; }
|
||||
[ObservableProperty] public partial SampleCalibrationViewModel SampleCalibration { get; set; }
|
||||
[ObservableProperty] public partial SeparatorCalibrationViewModel SeparatorCalibration { get; set; }
|
||||
[ObservableProperty] public partial CameraViewModel Camera { get; set; }
|
||||
// [ObservableProperty] public partial CameraViewModel Camera { get; set; }
|
||||
[ObservableProperty] public partial SystemViewModel System { get; set; }
|
||||
|
||||
[ObservableProperty] public partial int CurrentIndex { get; set; }
|
||||
@@ -27,7 +27,7 @@ public partial class AmineContentViewModel : ViewModelBase
|
||||
AnalysisViewModel analysis,
|
||||
SampleCalibrationViewModel sampleCalibration,
|
||||
SeparatorCalibrationViewModel separatorCalibration,
|
||||
CameraViewModel camera,
|
||||
// CameraViewModel camera,
|
||||
SystemViewModel system
|
||||
)
|
||||
{
|
||||
@@ -35,7 +35,7 @@ public partial class AmineContentViewModel : ViewModelBase
|
||||
Analysis = analysis;
|
||||
SampleCalibration = sampleCalibration;
|
||||
SeparatorCalibration = separatorCalibration;
|
||||
Camera = camera;
|
||||
// Camera = camera;
|
||||
System = system;
|
||||
}
|
||||
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
<ColumnDefinition Width="*" MinWidth="200"/> <!-- Анализ -->
|
||||
<ColumnDefinition Width="*" MinWidth="200"/> <!-- Калибровка проб -->
|
||||
<ColumnDefinition Width="*" MinWidth="200"/> <!-- Калибровка сепаратора -->
|
||||
<ColumnDefinition Width="*" MinWidth="200"/> <!-- Камера -->
|
||||
<!-- <ColumnDefinition Width="*" MinWidth="200"/> --> <!-- Камера -->
|
||||
<ColumnDefinition Width="*" MinWidth="200"/> <!-- Система -->
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
@@ -79,12 +79,12 @@
|
||||
</Button>
|
||||
|
||||
<!-- Камера -->
|
||||
<Button Grid.Column="3" Classes="menu" Command="{Binding ChangeSectionCommand}" CommandParameter="3">
|
||||
<!-- <Button Grid.Column="3" Classes="menu" Command="{Binding ChangeSectionCommand}" CommandParameter="3">
|
||||
<TextBlock Classes="menu-text" Text="Камера"/>
|
||||
</Button>
|
||||
</Button> -->
|
||||
|
||||
<!-- Система -->
|
||||
<Button Grid.Column="4" Classes="menu" Command="{Binding ChangeSectionCommand}" CommandParameter="4">
|
||||
<Button Grid.Column="3" Classes="menu" Command="{Binding ChangeSectionCommand}" CommandParameter="4">
|
||||
<TextBlock Classes="menu-text" Text="Система"/>
|
||||
</Button>
|
||||
|
||||
@@ -96,7 +96,7 @@
|
||||
<ContentControl Content="{Binding Analysis}"/> <!-- Анализ -->
|
||||
<ContentControl Content="{Binding SampleCalibration}"/> <!-- Калибровка проб -->
|
||||
<ContentControl Content="{Binding SeparatorCalibration}"/> <!-- Калибровка сепаратора -->
|
||||
<ContentControl Content="{Binding Camera}"/> <!-- Камера -->
|
||||
<!-- <ContentControl Content="{Binding Camera}"/> --> <!-- Камера -->
|
||||
<ContentControl Content="{Binding System}"/> <!-- Система -->
|
||||
</core:SectionPanel>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user