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" />
|
|
|
|
</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" />
|
|
|
|
</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-04-18 06:25:08 +08:00
|
|
|
<ToggleSwitch x:Uid="FileEplorerPreview_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-04-18 06:25:08 +08:00
|
|
|
<ToggleSwitch x:Uid="FileEplorerPreview_ToggleSwitch_Preview_MD"
|
|
|
|
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">
|
|
|
|
|
|
|
|
<TextBlock x:Uid="About_This_Feature"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-05-06 04:03:48 +08:00
|
|
|
<HyperlinkButton NavigateUri="https://github.com/microsoft/PowerToys/tree/master/src/modules/previewpane">
|
|
|
|
<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>
|