|
198 | 198 |
|
199 | 199 | <Grid x:Name="StartupSplashScreen" |
200 | 200 | AutomationProperties.AutomationId="StartupSplashScreen" |
201 | | - Visibility="{Binding StartupOverlayVisibility}"> |
202 | | - <Border Background="{StaticResource AppShellBackgroundBrush}" |
203 | | - Opacity="0.76" /> |
| 201 | + Visibility="{Binding StartupOverlayVisibility}" |
| 202 | + IsHitTestVisible="False"> |
204 | 203 | <Border Style="{StaticResource GlassPanelStyle}" |
205 | | - Width="420" |
206 | | - MaxWidth="420" |
207 | | - HorizontalAlignment="Center" |
208 | | - VerticalAlignment="Center" |
209 | | - Padding="24"> |
210 | | - <StackPanel Spacing="14"> |
| 204 | + Width="360" |
| 205 | + MaxWidth="360" |
| 206 | + Margin="0,22,22,0" |
| 207 | + HorizontalAlignment="Right" |
| 208 | + VerticalAlignment="Top" |
| 209 | + Padding="16,14"> |
| 210 | + <StackPanel Spacing="10"> |
211 | 211 | <StackPanel Orientation="Horizontal" |
212 | | - Spacing="14"> |
213 | | - <ProgressRing Width="28" |
214 | | - Height="28" |
| 212 | + Spacing="12"> |
| 213 | + <ProgressRing Width="20" |
| 214 | + Height="20" |
215 | 215 | IsActive="True" /> |
216 | 216 | <StackPanel Spacing="4"> |
217 | 217 | <TextBlock x:Name="StartupSplashTitleText" |
218 | | - FontSize="20" |
| 218 | + FontSize="16" |
219 | 219 | FontWeight="SemiBold" |
220 | 220 | Text="{Binding StartupTitle}" /> |
221 | 221 | <TextBlock x:Name="StartupSplashSummaryText" |
| 222 | + MaxWidth="292" |
222 | 223 | Foreground="{StaticResource AppMutedTextBrush}" |
223 | 224 | Text="{Binding StartupSummary}" |
224 | 225 | TextWrapping="WrapWholeWords" /> |
225 | 226 | </StackPanel> |
226 | 227 | </StackPanel> |
227 | 228 |
|
228 | | - <Rectangle Style="{StaticResource SectionDividerStyle}" /> |
229 | | - |
230 | 229 | <TextBlock Foreground="{StaticResource AppSecondaryTextBrush}" |
231 | | - Text="This runs once at startup and the app reuses the hydrated provider snapshot until you refresh it." |
| 230 | + Text="You can keep using the app while the startup snapshot warms up." |
232 | 231 | TextWrapping="WrapWholeWords" /> |
233 | 232 | </StackPanel> |
234 | 233 | </Border> |
|
0 commit comments