Revert "chore: unlocks update options when UpdateCheck = false"

This reverts commit 69df021c18.
This commit is contained in:
Constrat
2024-06-24 12:11:30 +02:00
parent 69df021c18
commit de3c033eea

View File

@@ -39,19 +39,22 @@
Margin="10"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="{DynamicResource UpdateAutoCheck}"/>
Content="{DynamicResource UpdateAutoCheck}"
IsChecked="{Binding UpdateAutoCheck}" />
<CheckBox
Margin="10"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="{DynamicResource UpdateAutoDownload}"
IsChecked="{Binding AutoDownloadUpdatePackage}"/>
IsChecked="{Binding AutoDownloadUpdatePackage}"
IsEnabled="{Binding UpdateCheck}" />
<CheckBox
Margin="10"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="{DynamicResource AutoInstallUpdatePackage}"
IsChecked="{Binding AutoInstallUpdatePackage}"/>
IsChecked="{Binding AutoInstallUpdatePackage}"
IsEnabled="{Binding UpdateCheck}" />
<StackPanel VerticalAlignment="Center" Orientation="Horizontal">
<controls:TextBlock
Margin="10,10,0,10"
@@ -61,6 +64,7 @@
Width="120"
Margin="10"
DisplayMemberPath="Display"
IsEnabled="{Binding UpdateCheck}"
ItemsSource="{Binding VersionTypeList}"
SelectedValue="{Binding VersionType}"
SelectedValuePath="Value" />