|
9 | 9 | mc:Ignorable="d">
|
10 | 10 |
|
11 | 11 | <Grid>
|
12 |
| - <Image |
13 |
| - x:Name="MainSplashScreenImage" |
14 |
| - Width="420" |
15 |
| - ImageFailed="Image_ImageFailed" |
16 |
| - ImageOpened="Image_ImageOpened" |
17 |
| - Source="\Assets\AppTiles\Dev\SplashScreen.png" /> |
| 12 | + <!-- Splash Screen Image --> |
| 13 | + <Viewbox |
| 14 | + x:Name="SplashScreenImageViewbox" |
| 15 | + Width="620" |
| 16 | + Height="300" |
| 17 | + HorizontalAlignment="Center" |
| 18 | + VerticalAlignment="Center" |
| 19 | + Stretch="None"> |
| 20 | + <Image |
| 21 | + x:Name="SplashScreenImage" |
| 22 | + ImageFailed="Image_ImageFailed" |
| 23 | + ImageOpened="Image_ImageOpened" |
| 24 | + Source="\Assets\AppTiles\Dev\SplashScreen.png" /> |
| 25 | + </Viewbox> |
18 | 26 |
|
| 27 | + <!-- Branch Label --> |
| 28 | + <TextBlock |
| 29 | + x:Name="SplashScreenBranchLabel" |
| 30 | + Margin="0,164,0,0" |
| 31 | + HorizontalAlignment="Center" |
| 32 | + VerticalAlignment="Center" |
| 33 | + FontSize="20" |
| 34 | + Foreground="{ThemeResource TextFillColorTertiaryBrush}" |
| 35 | + LineHeight="32"> |
| 36 | + <Run FontWeight="SemiBold" Text="Files" /> |
| 37 | + <Run FontWeight="SemiLight" Text="Preview" /> |
| 38 | + </TextBlock> |
| 39 | + |
| 40 | + <!-- Loading Indicator --> |
19 | 41 | <ProgressRing
|
20 |
| - x:Name="MainProgressRing" |
21 |
| - Margin="0,0,0,88" |
| 42 | + x:Name="SplashScreenLoadingProgressRing" |
| 43 | + Margin="0,0,0,48" |
22 | 44 | VerticalAlignment="Bottom"
|
23 | 45 | Foreground="{ThemeResource ApplicationForegroundThemeBrush}"
|
24 | 46 | IsIndeterminate="True" />
|
|
27 | 49 | <VisualStateGroup x:Name="SizeChangesState">
|
28 | 50 | <VisualState>
|
29 | 51 | <VisualState.StateTriggers>
|
30 |
| - <AdaptiveTrigger MinWindowWidth="640" /> |
| 52 | + <AdaptiveTrigger MinWindowHeight="500" /> |
31 | 53 | </VisualState.StateTriggers>
|
32 | 54 | <VisualState.Setters>
|
33 |
| - <Setter Target="MainSplashScreenImage.Width" Value="480" /> |
| 55 | + <Setter Target="SplashScreenLoadingProgressRing.Margin" Value="0,0,0,88" /> |
34 | 56 | </VisualState.Setters>
|
35 | 57 | </VisualState>
|
36 | 58 | </VisualStateGroup>
|
|
0 commit comments