|
517 | 517 | <controls:DataGrid.Resources>
|
518 | 518 | <SolidColorBrush x:Key="DataGridCellFocusVisualPrimaryBrush" Color="Transparent" />
|
519 | 519 | <SolidColorBrush x:Key="DataGridCellFocusVisualSecondaryBrush" Color="Transparent" />
|
520 |
| - <StaticResource x:Key="DataGridColumnHeaderBackgroundColor" ResourceKey="ApplicationPageBackgroundThemeBrush" /> |
| 520 | + <StaticResource x:Key="DataGridColumnHeaderBackgroundColor" ResourceKey="SystemControlTransparentBrush" /> |
521 | 521 | </controls:DataGrid.Resources>
|
522 | 522 | <controls:DataGrid.ColumnHeaderStyle>
|
523 | 523 | <Style TargetType="controlsprimitives:DataGridColumnHeader">
|
|
543 | 543 | </MenuFlyout>
|
544 | 544 | </Setter.Value>
|
545 | 545 | </Setter>
|
546 |
| - <Setter Property="Background" Value="{ThemeResource ApplicationPageBackgroundThemeBrush}" /> |
| 546 | + <Setter Property="SeparatorBrush" Value="Transparent"/> |
| 547 | + <Setter Property="Height" Value="38"/> |
| 548 | + <Setter Property="FontSize" Value="14"/> |
| 549 | + <Setter Property="Foreground" Value="{ThemeResource ApplicationForegroundThemeBrush}"/> |
| 550 | + <Setter Property="FontWeight" Value="SemiBold"/> |
| 551 | + <Setter Property="Background" Value="Transparent" /> |
547 | 552 | </Style>
|
548 | 553 | </controls:DataGrid.ColumnHeaderStyle>
|
549 | 554 | <Interactivity:Interaction.Behaviors>
|
|
568 | 573 | <Setter Property="FocusVisualSecondaryThickness" Value="0" />
|
569 | 574 | </Style>
|
570 | 575 | </controls:DataGrid.CellStyle>
|
571 |
| - |
572 | 576 | <controls:DataGrid.Columns>
|
573 | 577 | <controls:DataGridTemplateColumn
|
574 | 578 | x:Name="iconColumn"
|
575 | 579 | DisplayIndex="0"
|
| 580 | + CanUserResize="False" |
576 | 581 | IsReadOnly="True">
|
577 | 582 | <controls:DataGridTemplateColumn.CellTemplate>
|
578 | 583 | <DataTemplate x:DataType="local2:ListedItem">
|
|
617 | 622 | x:Name="nameColumn"
|
618 | 623 | x:Uid="nameColumn"
|
619 | 624 | Width="275"
|
| 625 | + FontSize="14" |
620 | 626 | Binding="{Binding ItemName}"
|
621 | 627 | DisplayIndex="1"
|
622 | 628 | Header="Name"
|
|
629 | 635 | x:Name="dateColumn"
|
630 | 636 | x:Uid="dateColumn"
|
631 | 637 | Width="Auto"
|
| 638 | + FontSize="12" |
632 | 639 | Binding="{Binding ItemDateModified}"
|
633 | 640 | DisplayIndex="2"
|
634 | 641 | Header="Date modified"
|
|
642 | 649 | x:Name="typeColumn"
|
643 | 650 | x:Uid="typeColumn"
|
644 | 651 | Width="150"
|
| 652 | + FontSize="12" |
645 | 653 | Binding="{Binding ItemType, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
|
646 | 654 | DisplayIndex="3"
|
647 | 655 | Header="Type"
|
|
656 | 664 | x:Uid="sizeColumn"
|
657 | 665 | Width="Auto"
|
658 | 666 | MinWidth="100"
|
| 667 | + FontSize="12" |
659 | 668 | Binding="{Binding FileSize}"
|
660 | 669 | DisplayIndex="4"
|
661 | 670 | Header="Size"
|
|
0 commit comments