|
1 | 1 | <local:BaseLayout
|
2 | 2 | x:Class="Files.Uwp.Views.LayoutModes.ColumnViewBase"
|
3 | 3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
4 |
| - xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
5 | 4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
6 |
| - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
7 |
| - xmlns:local="using:Files.Uwp" |
8 |
| - xmlns:converters1="using:Files.Uwp.Converters" |
9 |
| - xmlns:local2="using:Files.Uwp.Filesystem" |
10 |
| - xmlns:local3="using:Files.Uwp.Filesystem.Cloud" |
11 |
| - xmlns:helpers="using:Files.Uwp.Helpers" |
12 |
| - xmlns:uc="using:Files.Uwp.UserControls" |
13 |
| - xmlns:vc="using:Files.Uwp.ValueConverters" |
14 |
| - xmlns:tui="using:Microsoft.Toolkit.Uwp.UI" |
15 | 5 | xmlns:animations="using:Microsoft.Toolkit.Uwp.UI.Animations"
|
16 | 6 | xmlns:behaviors="using:Microsoft.Toolkit.Uwp.UI.Behaviors"
|
17 | 7 | xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls"
|
18 | 8 | xmlns:converters="using:Microsoft.Toolkit.Uwp.UI.Converters"
|
19 |
| - xmlns:muxc="using:Microsoft.UI.Xaml.Controls" |
20 |
| - xmlns:icore="using:Microsoft.Xaml.Interactions.Core" |
| 9 | + xmlns:converters1="using:Files.Uwp.Converters" |
| 10 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 11 | + xmlns:helpers="using:Files.Uwp.Helpers" |
21 | 12 | xmlns:i="using:Microsoft.Xaml.Interactivity"
|
| 13 | + xmlns:icore="using:Microsoft.Xaml.Interactions.Core" |
| 14 | + xmlns:local="using:Files.Uwp" |
| 15 | + xmlns:local2="using:Files.Uwp.Filesystem" |
| 16 | + xmlns:local3="using:Files.Uwp.Filesystem.Cloud" |
| 17 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 18 | + xmlns:muxc="using:Microsoft.UI.Xaml.Controls" |
| 19 | + xmlns:tui="using:Microsoft.Toolkit.Uwp.UI" |
| 20 | + xmlns:uc="using:Files.Uwp.UserControls" |
| 21 | + xmlns:vc="using:Files.Uwp.ValueConverters" |
22 | 22 | x:Name="PageRoot"
|
23 | 23 | mc:Ignorable="d">
|
24 | 24 | <local:BaseLayout.Resources>
|
|
187 | 187 | <Grid
|
188 | 188 | Height="30"
|
189 | 189 | Margin="0"
|
190 |
| - Padding="8,0" |
| 190 | + Padding="8,0,0,0" |
191 | 191 | HorizontalAlignment="Stretch"
|
192 | 192 | VerticalAlignment="Stretch"
|
193 | 193 | Background="Transparent"
|
|
200 | 200 | <ColumnDefinition Width="24" />
|
201 | 201 | <ColumnDefinition Width="*" />
|
202 | 202 | <ColumnDefinition Width="Auto" />
|
| 203 | + <ColumnDefinition Width="20" /> |
203 | 204 | </Grid.ColumnDefinitions>
|
204 | 205 | <animations:Explicit.Animations>
|
205 | 206 | <animations:AnimationSet x:Name="FadeAnimation">
|
|
332 | 333 | Visibility="{x:Bind FileTagsUI, Converter={StaticResource EmptyObjectToObjectConverter}, Mode=OneWay}" />
|
333 | 334 | </StackPanel>
|
334 | 335 | </Grid>
|
| 336 | + <FontIcon |
| 337 | + x:Name="OpenFolderChevron" |
| 338 | + Grid.Column="3" |
| 339 | + HorizontalAlignment="Right" |
| 340 | + VerticalAlignment="Center" |
| 341 | + FontSize="12" |
| 342 | + Foreground="{ThemeResource TextFillColorSecondary}" |
| 343 | + Glyph="" |
| 344 | + x:Load="{x:Bind IsFolder}" /> |
335 | 345 | </Grid>
|
336 | 346 | </DataTemplate>
|
337 | 347 | </ListView.ItemTemplate>
|
|
0 commit comments