mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
* added MSTest project * migrated powerrename tests * updated test * reverted changes to xaml file
144 lines
7.3 KiB
XML
144 lines
7.3 KiB
XML
<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:CustomControls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Grid RowSpacing="{StaticResource DefaultRowSpacing}">
|
|
<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}" />
|
|
<AdaptiveTrigger MinWindowWidth="0" />
|
|
</VisualState.StateTriggers>
|
|
<VisualState.Setters>
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="0"/>
|
|
<Setter Target="SidePanel.Width" Value="Auto"/>
|
|
<Setter Target="PowerRenameView.(Grid.Row)" Value="1" />
|
|
<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" />
|
|
</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="PowerRenameView">
|
|
|
|
<ToggleSwitch x:Uid="PowerRename_Toggle_Enable"
|
|
IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.IsEnabled}"
|
|
/>
|
|
|
|
<TextBlock x:Uid="PowerRename_ShellIntegration"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
|
|
|
<ToggleSwitch x:Uid="PowerRename_Toggle_EnableOnContextMenu"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.EnabledOnContextMenu}"
|
|
IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"
|
|
/>
|
|
|
|
<ToggleSwitch x:Uid="PowerRename_Toggle_EnableOnExtendedContextMenu"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.EnabledOnContextExtendedMenu}"
|
|
IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"
|
|
/>
|
|
|
|
<TextBlock x:Uid="PowerRename_AutoCompleteHeader"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
|
|
|
<CheckBox x:Uid="PowerRename_Toggle_AutoComplete"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.MRUEnabled}"
|
|
IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"
|
|
/>
|
|
|
|
<TextBlock x:Uid="PowerRename_Toggle_MaxDispListNum"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
|
|
|
<muxc:NumberBox SpinButtonPlacementMode="Compact"
|
|
HorizontalAlignment="Left"
|
|
Margin="{StaticResource HeaderTextTopMargin}"
|
|
Value="{x:Bind Mode=TwoWay, Path=ViewModel.MaxDispListNum}"
|
|
Minimum="0"
|
|
Width="240"
|
|
Maximum="20"
|
|
IsEnabled="{ x:Bind Mode=OneWay, Path=ViewModel.GlobalAndMruEnabled}"/>
|
|
|
|
<CheckBox x:Uid="PowerRename_Toggle_RestoreFlagsOnLaunch"
|
|
Margin="0, 17, 0, 0"
|
|
IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.RestoreFlagsOnLaunch}"
|
|
IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"/>
|
|
</StackPanel>
|
|
|
|
|
|
<RelativePanel x:Name="SidePanel"
|
|
HorizontalAlignment="Left"
|
|
Width="{StaticResource SidePanelWidth}"
|
|
Grid.Column="1">
|
|
<StackPanel x:Name="DescriptionPanel">
|
|
<TextBlock x:Uid="About_PowerRename" x:Name="AboutTitle" Grid.ColumnSpan="2"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
|
<TextBlock x:Uid="PowerRename_Description"
|
|
TextWrapping="Wrap"
|
|
Grid.Row="1" />
|
|
</StackPanel>
|
|
|
|
<Border x:Name="AboutImage"
|
|
CornerRadius="4"
|
|
Grid.Row="2"
|
|
MaxWidth="240"
|
|
HorizontalAlignment="Left"
|
|
Margin="{StaticResource SmallTopBottomMargin}"
|
|
RelativePanel.Below="DescriptionPanel">
|
|
<Image Source="ms-appx:///Assets/Modules/PowerRename.png" />
|
|
</Border>
|
|
|
|
<StackPanel x:Name="LinksPanel"
|
|
Margin="0,1,0,0"
|
|
RelativePanel.Below="AboutImage"
|
|
Orientation="Vertical" >
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_PowerRename">
|
|
<TextBlock x:Uid="Module_overview" />
|
|
</HyperlinkButton>
|
|
<HyperlinkButton NavigateUri="https://aka.ms/powerToysGiveFeedback">
|
|
<TextBlock x:Uid="Give_Feedback" />
|
|
</HyperlinkButton>
|
|
|
|
<TextBlock
|
|
x:Uid="AttributionTitle"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
Foreground="{ Binding Mode=TwoWay, Path=TextColor}"/>
|
|
|
|
<HyperlinkButton NavigateUri="https://github.com/chrdavis/SmartRename" Margin="0,-3,0,0">
|
|
<TextBlock Text="Chris Davis's SmartRenamer" TextWrapping="Wrap" />
|
|
</HyperlinkButton>
|
|
|
|
</StackPanel>
|
|
</RelativePanel>
|
|
</Grid>
|
|
</Page> |