-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathShellPanesPage.xaml
28 lines (26 loc) · 1.17 KB
/
ShellPanesPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- Copyright (c) 2024 Files Community. Licensed under the MIT License. See the LICENSE. -->
<Page
x:Class="Files.App.Views.ShellPanesPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:toolkit="using:CommunityToolkit.WinUI.UI.Controls"
mc:Ignorable="d">
<Page.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ms-appx:///Styles/DefaultGridSplitterStyle.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style BasedOn="{StaticResource DefaultGridSplitterStyle}" TargetType="toolkit:GridSplitter">
<Setter Target="Width" Value="4" />
<Setter Target="Background" Value="Transparent" />
<Setter Target="Opacity" Value="0" />
<Setter Target="ResizeBehavior" Value="BasedOnAlignment" />
<Setter Target="HorizontalAlignment" Value="Stretch" />
<Setter Target="VerticalAlignment" Value="Stretch" />
</Style>
</ResourceDictionary>
</Page.Resources>
<Grid x:Name="RootGrid" />
</Page>