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"
|
2020-10-10 05:45:30 +08:00
|
|
|
xmlns:converters="using:Microsoft.Toolkit.Uwp.UI.Converters"
|
2020-03-30 17:02:25 +08:00
|
|
|
mc:Ignorable="d"
|
2020-10-29 02:10:08 +08:00
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
|
|
|
|
AutomationProperties.LandmarkType="Main">
|
2020-03-30 17:02:25 +08:00
|
|
|
|
2020-10-10 05:45:30 +08:00
|
|
|
<Page.Resources>
|
|
|
|
<converters:BoolToObjectConverter x:Key="BoolToVisibilityConverter" TrueValue="Collapsed" FalseValue="Visible"/>
|
|
|
|
</Page.Resources>
|
|
|
|
|
2020-08-08 03:00:48 +08:00
|
|
|
<Grid RowSpacing="{StaticResource DefaultRowSpacing}">
|
2020-03-31 20:32:22 +08:00
|
|
|
<VisualStateManager.VisualStateGroups>
|
|
|
|
<VisualStateGroup x:Name="LayoutVisualStates">
|
|
|
|
<VisualState x:Name="WideLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource WideLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
</VisualState>
|
|
|
|
<VisualState x:Name="SmallLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource SmallLayoutMinWidth}" />
|
2020-08-08 03:00:48 +08:00
|
|
|
<AdaptiveTrigger MinWindowWidth="0" />
|
2020-03-31 20:32:22 +08:00
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
2020-07-25 03:02:56 +08:00
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="0"/>
|
2020-08-08 03:00:48 +08:00
|
|
|
<Setter Target="SidePanel.Width" Value="Auto"/>
|
|
|
|
<Setter Target="PowerPreviewView.(Grid.Row)" Value="1" />
|
2020-07-25 03:02:56 +08:00
|
|
|
<Setter Target="LinksPanel.(RelativePanel.RightOf)" Value="AboutImage"/>
|
|
|
|
<Setter Target="LinksPanel.(RelativePanel.AlignTopWith)" Value="AboutImage"/>
|
|
|
|
<Setter Target="AboutImage.Margin" Value="0,12,12,0"/>
|
|
|
|
<Setter Target="AboutTitle.Visibility" Value="Collapsed" />
|
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"
|
2020-08-08 03:00:48 +08:00
|
|
|
x:Name="PowerPreviewView">
|
2020-10-10 05:45:30 +08:00
|
|
|
<TextBlock x:Uid="FileExplorerPreview_RunAsAdminRequired"
|
|
|
|
Foreground="{ThemeResource SystemControlErrorTextForegroundBrush}"
|
|
|
|
Visibility="{Binding Mode=OneWay, Path=IsElevated, Converter={StaticResource BoolToVisibilityConverter}}"
|
2020-10-23 05:37:10 +08:00
|
|
|
Margin="{StaticResource SmallBottomMargin}"
|
|
|
|
TextWrapping="Wrap"/>
|
2020-10-10 05:45:30 +08:00
|
|
|
|
|
|
|
<TextBlock x:Uid="FileExplorerPreview_AffectsAllUsers"
|
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsElevated, Converter={StaticResource ModuleEnabledToForegroundConverter}}"
|
|
|
|
Margin="{StaticResource SmallBottomMargin}"
|
2020-10-23 05:37:10 +08:00
|
|
|
FontWeight="SemiBold"
|
|
|
|
TextWrapping="Wrap"/>
|
2020-10-10 05:45:30 +08:00
|
|
|
|
2020-09-12 08:10:51 +08:00
|
|
|
<TextBlock x:Uid="FileExplorerPreview_PreviewPane_GroupSettings"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyleAsHeader}"
|
2020-10-10 05:45:30 +08:00
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsElevated, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
2020-03-30 17:02:25 +08:00
|
|
|
|
2020-05-27 23:06:17 +08:00
|
|
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG"
|
2020-07-22 07:27:12 +08:00
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
2020-10-10 05:45:30 +08:00
|
|
|
IsOn="{Binding Mode=TwoWay, Path=SVGRenderIsEnabled}"
|
|
|
|
IsEnabled="{Binding Mode=OneWay, Path=IsElevated}"/>
|
2020-07-22 07:27:12 +08:00
|
|
|
|
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-10-10 05:45:30 +08:00
|
|
|
IsOn="{Binding Mode=TwoWay, Path=MDRenderIsEnabled}"
|
|
|
|
IsEnabled="{Binding Mode=OneWay, Path=IsElevated}"/>
|
|
|
|
|
2020-09-12 08:10:51 +08:00
|
|
|
<TextBlock x:Uid="FileExplorerPreview_IconThumbnail_GroupSettings"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
2020-10-10 05:45:30 +08:00
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsElevated, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
|
|
|
|
|
|
|
<TextBlock x:Uid="FileExplorerPreview_RebootRequired"
|
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsElevated, Converter={StaticResource ModuleEnabledToForegroundConverter}}"
|
|
|
|
Margin="{StaticResource SmallTopBottomMargin}"
|
2020-10-23 05:37:10 +08:00
|
|
|
FontWeight="SemiBold"
|
|
|
|
TextWrapping="Wrap"/>
|
2020-10-10 05:45:30 +08:00
|
|
|
|
2020-09-12 08:10:51 +08:00
|
|
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_SVG_Thumbnail"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
2020-10-10 05:45:30 +08:00
|
|
|
IsOn="{Binding Mode=TwoWay, Path=SVGThumbnailIsEnabled}"
|
|
|
|
IsEnabled="{Binding Mode=OneWay, Path=IsElevated}"/>
|
2020-03-30 17:02:25 +08:00
|
|
|
</StackPanel>
|
2020-07-25 03:02:56 +08:00
|
|
|
<RelativePanel x:Name="SidePanel"
|
2020-04-18 06:25:08 +08:00
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Width="{StaticResource SidePanelWidth}"
|
|
|
|
Grid.Column="1">
|
2020-07-25 03:02:56 +08:00
|
|
|
<StackPanel x:Name="DescriptionPanel">
|
|
|
|
<TextBlock x:Uid="About_FileExplorerPreview" x:Name="AboutTitle" Grid.ColumnSpan="2"
|
2020-04-18 06:25:08 +08:00
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="FileExplorerPreview_Description"
|
|
|
|
TextWrapping="Wrap"
|
|
|
|
Grid.Row="1" />
|
|
|
|
</StackPanel>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<Border x:Name="AboutImage"
|
|
|
|
CornerRadius="4"
|
|
|
|
Grid.Row="2"
|
|
|
|
MaxWidth="240"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Margin="{StaticResource SmallTopBottomMargin}"
|
|
|
|
RelativePanel.Below="DescriptionPanel">
|
2021-01-05 02:51:05 +08:00
|
|
|
<HyperlinkButton x:Uid="FileExplorerPreview_ImageHyperlinkToDocs">
|
|
|
|
<Image x:Uid="FileExplorerPreview_Image" Source="ms-appx:///Assets/Modules/PowerPreview.png" />
|
|
|
|
</HyperlinkButton>
|
2020-07-25 03:02:56 +08:00
|
|
|
</Border>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<StackPanel x:Name="LinksPanel"
|
2020-08-08 03:00:48 +08:00
|
|
|
Margin="0,1,0,0"
|
2020-07-25 03:02:56 +08:00
|
|
|
RelativePanel.Below="AboutImage"
|
|
|
|
Orientation="Vertical" >
|
2021-01-05 02:51:05 +08:00
|
|
|
<HyperlinkButton x:Uid="FileExplorerPreview_ImageHyperlinkToDocs">
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="Module_overview" />
|
|
|
|
</HyperlinkButton>
|
2020-08-18 04:10:56 +08:00
|
|
|
<HyperlinkButton NavigateUri="https://github.com/microsoft/PowerToys/issues">
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="Give_Feedback" />
|
|
|
|
</HyperlinkButton>
|
|
|
|
</StackPanel>
|
|
|
|
</RelativePanel>
|
2020-03-30 17:02:25 +08:00
|
|
|
</Grid>
|
2020-03-31 20:32:22 +08:00
|
|
|
</Page>
|