2020-03-27 23:58:53 +08:00
|
|
|
<Page
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.PowerRenamePage"
|
|
|
|
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:muxc="using:Microsoft.UI.Xaml.Controls"
|
|
|
|
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-03-27 23:58:53 +08:00
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
<TextBlock Text="A Windows Shell Extension for more advanced bulk renaming using search and replace or regular expressions."
|
|
|
|
TextWrapping="Wrap"/>
|
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
<ToggleSwitch x:Name="Toggle_PowerRename_Enable"
|
|
|
|
Header="Enable PowerRename"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Toggled="Toggle_PowerRename_Enable_Toggled"
|
|
|
|
/>
|
2020-03-27 23:58:53 +08:00
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
<TextBlock Text="Shell integration"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
2020-03-27 23:58:53 +08:00
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
<ToggleSwitch x:Name="Toggle_PowerRename_EnableOnContextMenu"
|
|
|
|
Header="Show on default context menu"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Toggled="Toggle_PowerRename_EnableOnContextMenu_Toggled"
|
|
|
|
/>
|
2020-03-27 23:58:53 +08:00
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
<ToggleSwitch x:Name="Toggle_PowerRename_EnableOnExtendedContextMenu"
|
|
|
|
Header="Only show on extended context menu (Shift + Right-click)"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Toggled="Toggle_PowerRename_EnableOnExtendedContextMenu_Toggled"
|
|
|
|
/>
|
2020-03-27 23:58:53 +08:00
|
|
|
|
|
|
|
<TextBlock Text="Miscellaneous"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
<ToggleSwitch x:Name="Toggle_PowerRename_RestoreFlagsOnLaunch"
|
|
|
|
Header="Restore search, replace and flags values on launch from previous run"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Toggled="Toggle_PowerRename_RestoreFlagsOnLaunch_Toggled"
|
|
|
|
/>
|
2020-03-27 23:58:53 +08:00
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
<muxc:NumberBox x:Name="Toggle_PowerRename_MaxDispListNum"
|
|
|
|
Header="Maximum numbers of items to show in recently used list"
|
2020-03-27 23:58:53 +08:00
|
|
|
SpinButtonPlacementMode="Inline"
|
|
|
|
HorizontalAlignment="Left"
|
2020-04-02 21:08:56 +08:00
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
ValueChanged="Toggle_PowerRename_MaxDispListNum_ValueChanged"
|
|
|
|
/>
|
2020-03-27 23:58:53 +08:00
|
|
|
</StackPanel>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
|
|
|
|
2020-04-15 01:42:27 +08:00
|
|
|
<StackPanel
|
|
|
|
x:Name="SidePanel"
|
|
|
|
Orientation="Vertical"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Width="{StaticResource SidePanelWidth}"
|
|
|
|
Grid.Column="1">
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-04-15 01:42:27 +08:00
|
|
|
<TextBlock
|
|
|
|
Text="About this feature"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-04-15 01:42:27 +08:00
|
|
|
<HyperlinkButton
|
|
|
|
Content="Module overview"
|
|
|
|
NavigateUri="https://github.com/microsoft/PowerToys/tree/master/src/modules/powerrename"/>
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-04-15 01:42:27 +08:00
|
|
|
<TextBlock
|
|
|
|
Text="Attribution"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}" />
|
2020-03-31 20:32:22 +08:00
|
|
|
|
2020-04-15 01:42:27 +08:00
|
|
|
<HyperlinkButton
|
|
|
|
Content="Chris Davis's SmartRenamer"
|
|
|
|
NavigateUri="https://github.com/chrdavis/SmartRename" />
|
|
|
|
|
2020-03-31 20:32:22 +08:00
|
|
|
</StackPanel>
|
2020-03-27 23:58:53 +08:00
|
|
|
</Grid>
|
|
|
|
</Page>
|