|
244 | 244 | x:Name="DriveFormatAndTypeTextBlock" |
245 | 245 | Margin="12,12,12,24" |
246 | 246 | HorizontalAlignment="Center" |
247 | | - FontFamily="{ThemeResource ContentControlThemeFontFamily}" |
248 | | - FontSize="14" |
249 | 247 | IsTextSelectionEnabled="True" |
| 248 | + Style="{ThemeResource BodyTextBlockStyle}" |
250 | 249 | TextAlignment="Center" |
251 | 250 | TextWrapping="Wrap" |
252 | 251 | Visibility="Collapsed"> |
|
257 | 256 | <TextBlock |
258 | 257 | x:Name="UsedSpaceTextBlock" |
259 | 258 | HorizontalAlignment="Center" |
260 | | - FontFamily="{ThemeResource ContentControlThemeFontFamily}" |
261 | | - FontSize="20" |
262 | | - FontWeight="Bold" |
263 | 259 | Foreground="{ThemeResource SystemAccentColor}" |
264 | 260 | IsTextSelectionEnabled="True" |
| 261 | + Style="{ThemeResource SubtitleTextBlockStyle}" |
265 | 262 | Text="{x:Bind ViewModel.SelectedDriveItem.UsedSpaceText, Mode=OneWay}" |
266 | 263 | TextAlignment="Center" |
267 | 264 | TextWrapping="Wrap" |
|
293 | 290 | x:Name="AvailableSpaceTextBlock" |
294 | 291 | FontFamily="{ThemeResource ContentControlThemeFontFamily}" |
295 | 292 | FontSize="14" |
296 | | - FontWeight="Bold" |
297 | 293 | IsTextSelectionEnabled="True" |
| 294 | + Style="{ThemeResource BodyStrongTextBlockStyle}" |
298 | 295 | Text="{x:Bind ViewModel.SelectedDriveItem.FreeSpaceText, Mode=OneWay}" |
299 | 296 | TextAlignment="Left" |
300 | 297 | TextWrapping="Wrap" /> |
301 | 298 | <TextBlock |
302 | 299 | x:Name="TotalDriveSpaceTextBlock" |
303 | 300 | Grid.Column="2" |
304 | | - FontSize="14" |
305 | | - FontWeight="Bold" |
| 301 | + Foreground="{ThemeResource TextFillColorTertiaryBrush}" |
306 | 302 | IsTextSelectionEnabled="True" |
307 | | - Style="{StaticResource Local.FileDetailsHeaderTextBlockStyle}" |
| 303 | + Style="{ThemeResource BodyStrongTextBlockStyle}" |
308 | 304 | Text="{x:Bind ViewModel.SelectedDriveItem.MaxSpaceText, Mode=OneWay}" |
309 | 305 | TextAlignment="Right" |
310 | 306 | TextWrapping="Wrap" /> |
311 | 307 | <TextBlock |
312 | 308 | x:Name="AvailableSpaceLabel" |
313 | 309 | Grid.Row="1" |
314 | 310 | HorizontalAlignment="Left" |
315 | | - FontFamily="{ThemeResource ContentControlThemeFontFamily}" |
316 | | - FontSize="14" |
317 | 311 | IsTextSelectionEnabled="True" |
318 | | - Text="Available" |
| 312 | + Style="{ThemeResource BodyTextBlockStyle}" |
| 313 | + Text="{helpers:ResourceString Name=Available}" |
319 | 314 | TextAlignment="Left" |
320 | 315 | TextWrapping="Wrap" /> |
321 | 316 | <TextBlock |
322 | 317 | x:Name="TotalDriveSpaceLabel" |
323 | 318 | Grid.Row="1" |
324 | 319 | Grid.Column="2" |
325 | 320 | HorizontalAlignment="Right" |
326 | | - FontFamily="{ThemeResource ContentControlThemeFontFamily}" |
327 | | - FontSize="14" |
328 | 321 | Foreground="{ThemeResource TextFillColorTertiaryBrush}" |
329 | 322 | IsTextSelectionEnabled="True" |
330 | | - Text="Total" |
| 323 | + Style="{ThemeResource BodyTextBlockStyle}" |
| 324 | + Text="{helpers:ResourceString Name=Total}" |
331 | 325 | TextAlignment="Right" |
332 | 326 | TextWrapping="Wrap" /> |
333 | 327 | </Grid> |
|
0 commit comments