2020-03-30 17:02:25 +08:00
|
|
|
<Page
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.PowerPreviewPage"
|
|
|
|
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"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
|
2020-03-31 20:32:22 +08:00
|
|
|
<Grid ColumnSpacing="{StaticResource DefaultColumnSpacing}" RowSpacing="{StaticResource DefaultRowSpacing}">
|
|
|
|
<VisualStateManager.VisualStateGroups>
|
|
|
|
<VisualStateGroup x:Name="LayoutVisualStates">
|
|
|
|
<VisualState x:Name="WideLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource WideLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="1" />
|
|
|
|
<Setter Target="SidePanel.(Grid.Row)" Value="0" />
|
2020-05-26 15:34:14 +08:00
|
|
|
<Setter Target="SidePanel.Width" Value="{StaticResource SidePanelWidth}" />
|
2020-03-31 20:32:22 +08:00
|
|
|
</VisualState.Setters>
|
|
|
|
</VisualState>
|
|
|
|
<VisualState x:Name="SmallLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource SmallLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="0" />
|
|
|
|
<Setter Target="SidePanel.(Grid.Row)" Value="1" />
|
2020-05-26 15:34:14 +08:00
|
|
|
<Setter Target="SidePanel.Width" Value="Auto" />
|
2020-03-31 20:32:22 +08:00
|
|
|
</VisualState.Setters>
|
|
|
|
</VisualState>
|
|
|
|
</VisualStateGroup>
|
|
|
|
</VisualStateManager.VisualStateGroups>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
2020-04-18 06:25:08 +08:00
|
|
|
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
|
|
x:Name="PowerPreviewSettingsView">
|
|
|
|
<TextBlock x:Uid="FileExplorerPreview_Description"
|
2020-03-30 17:02:25 +08:00
|
|
|
TextWrapping="Wrap"/>
|
|
|
|
|
2020-05-27 23:06:17 +08:00
|
|
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG"
|
2020-05-06 04:58:48 +08:00
|
|
|
Margin="{StaticResource MediumTopMargin}"
|
2020-05-03 18:17:06 +08:00
|
|
|
IsOn="{Binding Mode=TwoWay, Path=SVGRenderIsEnabled}" />
|
2020-03-30 17:02:25 +08:00
|
|
|
|
2020-07-22 07:27:12 +08:00
|
|
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_SVG_Thumbnail"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
IsOn="{Binding Mode=TwoWay, Path=SVGThumbnailIsEnabled}" />
|
|
|
|
|
2020-05-27 23:06:17 +08:00
|
|
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_MD"
|
2020-04-18 06:25:08 +08:00
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
2020-05-03 18:17:06 +08:00
|
|
|
IsOn="{Binding Mode=TwoWay, Path=MDRenderIsEnabled}" />
|
2020-03-30 17:02:25 +08:00
|
|
|
|
|
|
|
</StackPanel>
|
2020-04-18 06:25:08 +08:00
|
|
|
<StackPanel x:Name="SidePanel"
|
|
|
|
Orientation="Vertical"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Width="{StaticResource SidePanelWidth}"
|
|
|
|
Grid.Column="1">
|
|
|
|
|
2020-05-12 03:36:55 +08:00
|
|
|
<TextBlock x:Uid="About_FileExplorerPreview"
|
2020-04-18 06:25:08 +08:00
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-06-12 01:16:39 +08:00
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_FileExplorerAddOns">
|
2020-05-06 04:03:48 +08:00
|
|
|
<TextBlock x:Uid="Module_overview" />
|
|
|
|
</HyperlinkButton>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-05-06 04:03:48 +08:00
|
|
|
<HyperlinkButton NavigateUri="https://github.com/microsoft/PowerToys/issues">
|
|
|
|
<TextBlock x:Uid="Give_Feedback" />
|
|
|
|
</HyperlinkButton>
|
2020-03-31 20:32:22 +08:00
|
|
|
</StackPanel>
|
2020-03-30 17:02:25 +08:00
|
|
|
</Grid>
|
2020-03-31 20:32:22 +08:00
|
|
|
</Page>
|