mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
* spelling: administrator * spelling: appearance * spelling: expected * spelling: explorer * spelling: implementation * spelling: integration * spelling: successful * spelling: windows
77 lines
3.7 KiB
XML
77 lines
3.7 KiB
XML
<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}">
|
|
|
|
<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" />
|
|
<Setter Target="SidePanel.Width" Value="{StaticResource SidePanelWidth}" />
|
|
</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" />
|
|
<Setter Target="SidePanel.Width" Value="Auto" />
|
|
</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>
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
x:Name="PowerPreviewSettingsView">
|
|
<TextBlock x:Uid="FileExplorerPreview_Description"
|
|
TextWrapping="Wrap"/>
|
|
|
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG"
|
|
Margin="{StaticResource MediumTopMargin}"
|
|
IsOn="{Binding Mode=TwoWay, Path=SVGRenderIsEnabled}" />
|
|
|
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_MD"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
IsOn="{Binding Mode=TwoWay, Path=MDRenderIsEnabled}" />
|
|
|
|
</StackPanel>
|
|
<StackPanel x:Name="SidePanel"
|
|
Orientation="Vertical"
|
|
HorizontalAlignment="Left"
|
|
Width="{StaticResource SidePanelWidth}"
|
|
Grid.Column="1">
|
|
|
|
<TextBlock x:Uid="About_FileExplorerPreview"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
|
|
|
<HyperlinkButton NavigateUri="https://github.com/microsoft/PowerToys/tree/master/src/modules/previewpane">
|
|
<TextBlock x:Uid="Module_overview" />
|
|
</HyperlinkButton>
|
|
|
|
<HyperlinkButton NavigateUri="https://github.com/microsoft/PowerToys/issues">
|
|
<TextBlock x:Uid="Give_Feedback" />
|
|
</HyperlinkButton>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Page> |