Skip to content

Commit

Permalink
Fix installation progress bar style
Browse files Browse the repository at this point in the history
  • Loading branch information
neon-nyan committed May 24, 2024
1 parent 990c331 commit 9382212
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions CollapseLauncher/XAMLs/MainApp/Pages/HomePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -797,10 +797,11 @@
Maximum="100"
Value="0"/>
<Grid x:Name="progressPerFile"
Visibility="Collapsed">
Visibility="Visible"
Margin="12">
<ProgressRing x:Name="progressRingAcrBG2"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="Auto"
Height="Auto"
IsIndeterminate="{Binding IsIndeterminate, ElementName=progressRingPerFile}"
Maximum="{Binding Maximum, ElementName=progressRingPerFile}"
Value="{Binding Value, ElementName=progressRingPerFile}"/>
Expand All @@ -810,8 +811,9 @@
VerticalAlignment="Stretch"
Fill="{ThemeResource ProgressBackgroundAcrylicBrush}"/>
<ProgressRing x:Name="progressRingPerFile"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="Auto"
Height="Auto"
Margin="8"
IsIndeterminate="True"
Maximum="100"
Value="0"/>
Expand Down

0 comments on commit 9382212

Please sign in to comment.