|
866 | 866 | </Grid> |
867 | 867 | <SplitView DisplayMode="Inline" OpenPaneLength="225" IsPaneOpen="True" HorizontalAlignment="Stretch" Grid.RowSpan="1" Grid.Row="1" VerticalAlignment="Stretch" PaneBackground="{ThemeResource ApplicationPageBackgroundThemeBrush}"> |
868 | 868 | <SplitView.Pane> |
869 | | - <ScrollViewer VerticalScrollBarVisibility="Auto"> |
870 | | - <Grid> |
| 869 | + <ScrollViewer Margin="0,14,0,0" VerticalScrollBarVisibility="Auto"> |
| 870 | + <Grid > |
871 | 871 | <StackPanel> |
872 | 872 | <StackPanel.Resources> |
873 | 873 | <SolidColorBrush x:Key="ListViewItemBackgroundSelected" Color="{ThemeResource SystemRevealListMediumColor}"/> |
874 | 874 | <SolidColorBrush x:Key="ListViewItemBackgroundSelectedPointerOver" Color="{ThemeResource SystemRevealListMediumColor}"/> |
875 | 875 | <SolidColorBrush x:Key="ListViewItemBackgroundSelectedPressed" Color="{ThemeResource SystemRevealListMediumColor}"/> |
876 | 876 | </StackPanel.Resources> |
877 | | - <TextBlock Margin="10" Text="Locations" FontSize="14" FontWeight="Bold" Padding="0" VerticalAlignment="Stretch"/> |
| 877 | + <TextBlock Visibility="Collapsed" Margin="10" Text="Locations" FontSize="14" FontWeight="Bold" Padding="0" VerticalAlignment="Stretch"/> |
878 | 878 | <ListView SelectionChanged="LocationsList_SelectionChanged" SelectionMode="Single" IsItemClickEnabled="True" ItemClick="LocationsList_ItemClick" Name="LocationsList"> |
879 | 879 | <ListView.Resources> |
880 | 880 | <ResourceDictionary Source="ms-appx:///Microsoft.UI.Xaml/DensityStyles/Compact.xaml" /> |
|
936 | 936 | </ListViewItem.Content> |
937 | 937 | </ListViewItem> |
938 | 938 | </ListView> |
939 | | - <TextBlock Margin="10" Text="Drives" FontSize="14" FontWeight="Bold" Padding="0" VerticalAlignment="Stretch"/> |
940 | | - <ListView ItemsSource="{x:Bind local:App.foundDrives}" SelectionChanged="DrivesList_SelectionChanged" SelectionMode="Single" IsItemClickEnabled="True" ItemClick="DrivesList_ItemClick" Name="DrivesList"> |
| 939 | + <TextBlock Margin="10,10,10,5" Text="Drives" FontSize="14" FontWeight="Bold" Padding="0" VerticalAlignment="Stretch"/> |
| 940 | + <ListView AllowDrop="True" CanReorderItems="True" ItemsSource="{x:Bind local:App.foundDrives}" SelectionChanged="DrivesList_SelectionChanged" SelectionMode="Single" IsItemClickEnabled="True" ItemClick="DrivesList_ItemClick" Name="DrivesList"> |
941 | 941 | <ListView.Resources> |
942 | 942 | <ResourceDictionary Source="ms-appx:///Microsoft.UI.Xaml/DensityStyles/Compact.xaml" /> |
943 | 943 | </ListView.Resources> |
944 | 944 | <ListView.ItemTemplate> |
945 | 945 | <DataTemplate> |
946 | | - <StackPanel Spacing="15" Orientation="Horizontal"> |
| 946 | + <StackPanel ToolTipService.ToolTip="{Binding spaceText}" Spacing="15" Orientation="Horizontal"> |
947 | 947 | <Grid> |
948 | 948 | <FontIcon Visibility="{Binding driveGlyphVisibility}" FontSize="16" Glyph="{Binding glyph}" FontFamily="Segoe MDL2 Assets"/> |
949 | 949 | <FontIcon Visibility="{Binding cloudGlyphVisibility}" FontSize="16" Glyph="" FontFamily="Segoe MDL2 Assets"/> |
|
0 commit comments