mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-18 14:41:21 +08:00
[PowerRename] Adding mica (#27509)
* Adding mica + other improvements * Address feedback
This commit is contained in:
parent
4647491c68
commit
cc3b30c7e2
File diff suppressed because it is too large
Load Diff
@ -17,6 +17,27 @@
|
||||
<!-- Error tooltip -->
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<VisualStateManager.VisualStateGroups>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Highlight">
|
||||
<VisualState.Setters>
|
||||
<Setter Target="HighlightBorder.Opacity" Value="0.1" />
|
||||
<Setter Target="HighlightBorder.BorderBrush" Value="{ThemeResource AccentTextFillColorPrimaryBrush}" />
|
||||
<Setter Target="HighlightBorder.Background" Value="{ThemeResource AccentTextFillColorPrimaryBrush}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
<VisualState x:Name="Error">
|
||||
<VisualState.Setters>
|
||||
<Setter Target="HighlightBorder.Opacity" Value="1" />
|
||||
<Setter Target="HighlightBorder.BorderBrush" Value="{ThemeResource SystemFillColorCriticalBackgroundBrush}" />
|
||||
<Setter Target="HighlightBorder.Background" Value="{ThemeResource SystemFillColorCriticalBackgroundBrush}" />
|
||||
<Setter Target="ErrorIcon.Visibility" Value="Visible" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateManager.VisualStateGroups>
|
||||
|
||||
<Border
|
||||
Name="HighlightBorder"
|
||||
Grid.ColumnSpan="4"
|
||||
@ -48,10 +69,10 @@
|
||||
Content=""
|
||||
IsChecked="{x:Bind Checked, Mode=TwoWay}"
|
||||
IsTabStop="True"
|
||||
TabIndex="0"
|
||||
Style="{StaticResource CheckBoxDefaultStyleOverride}"
|
||||
TabIndex="0"
|
||||
XYFocusKeyboardNavigation="Enabled" />
|
||||
|
||||
|
||||
<Image
|
||||
Grid.Column="2"
|
||||
Width="16"
|
||||
@ -82,16 +103,16 @@
|
||||
Grid.Column="3"
|
||||
Width="12"
|
||||
Height="12"
|
||||
CornerRadius="12"
|
||||
Margin="4,0,8,0"
|
||||
Background="{ThemeResource SystemFillColorCriticalBrush}"
|
||||
CornerRadius="12"
|
||||
Visibility="Collapsed">
|
||||
<TextBlock
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center"
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
Foreground="White"
|
||||
FontSize="8"
|
||||
Foreground="White"
|
||||
Text="" />
|
||||
<ToolTipService.ToolTip>
|
||||
<TextBlock
|
||||
@ -100,26 +121,5 @@
|
||||
TextWrapping="Wrap" />
|
||||
</ToolTipService.ToolTip>
|
||||
</Border>
|
||||
|
||||
<VisualStateManager.VisualStateGroups>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Highlight">
|
||||
<VisualState.Setters>
|
||||
<Setter Target="HighlightBorder.Opacity" Value="0.1" />
|
||||
<Setter Target="HighlightBorder.BorderBrush" Value="{ThemeResource AccentTextFillColorPrimaryBrush}" />
|
||||
<Setter Target="HighlightBorder.Background" Value="{ThemeResource AccentTextFillColorPrimaryBrush}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
<VisualState x:Name="Error">
|
||||
<VisualState.Setters>
|
||||
<Setter Target="HighlightBorder.Opacity" Value="1" />
|
||||
<Setter Target="HighlightBorder.BorderBrush" Value="{ThemeResource SystemFillColorCriticalBackgroundBrush}" />
|
||||
<Setter Target="HighlightBorder.Background" Value="{ThemeResource SystemFillColorCriticalBackgroundBrush}" />
|
||||
<Setter Target="ErrorIcon.Visibility" Value="Visible" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateManager.VisualStateGroups>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
|
@ -8,8 +8,10 @@
|
||||
xmlns:local="using:PowerRenameUI"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d">
|
||||
|
||||
<Grid Padding="12" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
||||
<Window.SystemBackdrop>
|
||||
<MicaBackdrop />
|
||||
</Window.SystemBackdrop>
|
||||
<Grid Padding="12">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="0" />
|
||||
<!-- 48 if we need to draw the title bar ourself -->
|
||||
@ -62,7 +64,7 @@
|
||||
VerticalAlignment="Center"
|
||||
Orientation="Horizontal">
|
||||
<TextBlock x:Uid="TxtBlock_Original" FontWeight="Medium" />
|
||||
<TextBlock FontWeight="Medium" Margin="4,0,0,0" >
|
||||
<TextBlock Margin="4,0,0,0" FontWeight="Medium">
|
||||
<Run Text="(" /><Run Text="{x:Bind OriginalCount, Mode=OneWay}" /><Run Text=")" />
|
||||
</TextBlock>
|
||||
</StackPanel>
|
||||
@ -75,8 +77,8 @@
|
||||
VerticalAlignment="Center"
|
||||
Orientation="Horizontal">
|
||||
<TextBlock x:Uid="TxtBlock_Renamed" FontWeight="Medium" />
|
||||
<TextBlock FontWeight="Medium" Margin="4,0,0,0" >
|
||||
<Run Text="(" /><Run Text="{x:Bind RenamedCount, Mode=OneWay}" /><Run Text=")" />
|
||||
<TextBlock Margin="4,0,0,0" FontWeight="Medium">
|
||||
<Run Text="(" /><Run Text="{x:Bind RenamedCount, Mode=OneWay}" /><Run Text=")" />
|
||||
</TextBlock>
|
||||
</StackPanel>
|
||||
|
||||
@ -85,9 +87,9 @@
|
||||
Grid.Column="1"
|
||||
Height="32"
|
||||
Margin="0,0,8,0"
|
||||
BorderThickness="0"
|
||||
HorizontalAlignment="Right"
|
||||
Background="Transparent"
|
||||
BorderThickness="0"
|
||||
Content=""
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}">
|
||||
<Button.Flyout>
|
||||
@ -113,37 +115,37 @@
|
||||
HorizontalAlignment="Stretch"
|
||||
VerticalAlignment="Bottom"
|
||||
Fill="{ThemeResource DividerStrokeColorDefaultBrush}" />
|
||||
<!--Changing VirtualizationMode to Recycling introduces the issue with popping indent/icons, but makes scrolling slightly faster -->
|
||||
<!-- Changing VirtualizationMode to Recycling introduces the issue with popping indent/icons, but makes scrolling slightly faster -->
|
||||
<ListView
|
||||
x:Name="listView_ExplorerItems"
|
||||
Grid.Row="1"
|
||||
Grid.ColumnSpan="6"
|
||||
IsItemClickEnabled="False"
|
||||
IsTabStop="false"
|
||||
ItemsSource="{x:Bind ExplorerItems, Mode=OneWay}"
|
||||
SelectionMode="None"
|
||||
x:Name="listView_ExplorerItems"
|
||||
XYFocusKeyboardNavigation="Enabled"
|
||||
VirtualizingStackPanel.VirtualizationMode="Standard">
|
||||
VirtualizingStackPanel.VirtualizationMode="Standard"
|
||||
XYFocusKeyboardNavigation="Enabled">
|
||||
<ListView.ItemTemplate>
|
||||
<DataTemplate x:DataType="local:ExplorerItemViewModel">
|
||||
<local:ExplorerItem
|
||||
<local:ExplorerItem
|
||||
Checked="{x:Bind CheckedVM, Mode=TwoWay, FallbackValue=True}"
|
||||
Id="{x:Bind IdVM, Mode=OneWay}"
|
||||
IdStr="{x:Bind IdStrVM}"
|
||||
ImagePath="{x:Bind ImagePathVM}"
|
||||
Indentation="{x:Bind IndentationVM}"
|
||||
Original="{x:Bind OriginalVM}"
|
||||
Renamed="{x:Bind RenamedVM}"
|
||||
Indentation="{x:Bind IndentationVM}"
|
||||
ImagePath="{x:Bind ImagePathVM}"
|
||||
Type="{x:Bind TypeVM}"
|
||||
Checked="{x:Bind CheckedVM, Mode=TwoWay, FallbackValue=True}"
|
||||
State="{x:Bind StateVM}" />
|
||||
</DataTemplate >
|
||||
State="{x:Bind StateVM}"
|
||||
Type="{x:Bind TypeVM}" />
|
||||
</DataTemplate>
|
||||
</ListView.ItemTemplate>
|
||||
<ListView.ItemsPanel>
|
||||
<ItemsPanelTemplate>
|
||||
<VirtualizingStackPanel />
|
||||
</ItemsPanelTemplate>
|
||||
</ListView.ItemsPanel>
|
||||
|
||||
|
||||
<ListView.ItemContainerStyle>
|
||||
<Style TargetType="ListViewItem">
|
||||
<Setter Property="IsTabStop" Value="False" />
|
||||
@ -372,7 +374,7 @@
|
||||
<TextBlock
|
||||
x:Name="ApplyToLabel"
|
||||
x:Uid="TextBox_ApplyTo"
|
||||
Margin="0,12,0,8"
|
||||
Margin="0,16,0,8"
|
||||
FontSize="12"
|
||||
Foreground="{ThemeResource TextFillColorSecondaryBrush}" />
|
||||
|
||||
@ -397,36 +399,32 @@
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_includeFiles"
|
||||
x:Uid="ToggleButton_IncludeFiles"
|
||||
Height="31"
|
||||
Height="32"
|
||||
MinHeight="0"
|
||||
Content=""
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
IsChecked="True"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
IsChecked="True" />
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_includeFolders"
|
||||
x:Uid="ToggleButton_IncludeFolders"
|
||||
Height="31"
|
||||
Height="32"
|
||||
MinHeight="0"
|
||||
Content=""
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
IsChecked="True"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
IsChecked="True" />
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_includeSubfolders"
|
||||
x:Uid="ToggleButton_IncludeSubFolders"
|
||||
Height="31"
|
||||
Height="32"
|
||||
MinHeight="0"
|
||||
Content=""
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
IsChecked="True"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
IsChecked="True" />
|
||||
</StackPanel>
|
||||
|
||||
|
||||
<TextBlock
|
||||
x:Uid="TextBlock_TextFormatting"
|
||||
Margin="0,12,0,8"
|
||||
Margin="0,16,0,8"
|
||||
FontSize="12"
|
||||
Foreground="{ThemeResource TextFillColorSecondaryBrush}" />
|
||||
|
||||
@ -435,48 +433,42 @@
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_lowerCase"
|
||||
x:Uid="ToggleButton_Lowercase"
|
||||
Height="31"
|
||||
Height="32"
|
||||
MinHeight="0"
|
||||
Content="aa"
|
||||
FontWeight="Medium"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
FontWeight="Medium" />
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_upperCase"
|
||||
x:Uid="ToggleButton_Uppercase"
|
||||
Height="31"
|
||||
Height="32"
|
||||
MinHeight="0"
|
||||
Content="AA"
|
||||
FontWeight="Medium"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
FontWeight="Medium" />
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_titleCase"
|
||||
x:Uid="ToggleButton_TitleCase"
|
||||
Height="31"
|
||||
Height="32"
|
||||
MinHeight="0"
|
||||
Content="Aa"
|
||||
FontWeight="Medium"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
FontWeight="Medium" />
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_capitalize"
|
||||
x:Uid="ToggleButton_Capitalize"
|
||||
Height="31"
|
||||
Height="32"
|
||||
MinHeight="0"
|
||||
Content="Aa Aa"
|
||||
FontWeight="Medium"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
FontWeight="Medium" />
|
||||
<AppBarSeparator Margin="5,0,5,0" />
|
||||
|
||||
<ToggleButton
|
||||
x:Name="toggleButton_enumItems"
|
||||
x:Uid="ToggleButton_EnumItems"
|
||||
MinHeight="32"
|
||||
Height="32"
|
||||
Content=""
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
Style="{StaticResource CustomToggleButtonStyle}" />
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}" />
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
|
||||
|
||||
<Rectangle
|
||||
Grid.Row="1"
|
||||
Height="1"
|
||||
@ -484,9 +476,6 @@
|
||||
HorizontalAlignment="Stretch"
|
||||
VerticalAlignment="Top"
|
||||
Fill="{ThemeResource CardStrokeColorDefaultBrush}" />
|
||||
|
||||
|
||||
|
||||
</Grid>
|
||||
|
||||
<StackPanel
|
||||
@ -534,7 +523,6 @@
|
||||
Content=""
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}" />
|
||||
|
||||
|
||||
<!--<Button Content=""
|
||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
ToolTipService.ToolTip="Presets"
|
||||
@ -552,11 +540,8 @@
|
||||
</MenuFlyout>
|
||||
</Button.Flyout>
|
||||
</Button>-->
|
||||
|
||||
</StackPanel>
|
||||
|
||||
|
||||
|
||||
<SplitButton
|
||||
x:Name="button_rename"
|
||||
x:Uid="ButtonApply"
|
||||
@ -587,10 +572,5 @@
|
||||
</MenuFlyout>
|
||||
</SplitButton.Flyout>
|
||||
</SplitButton>
|
||||
|
||||
<!--<StackPanel x:Name="TitleBar" Orientation="Horizontal">
|
||||
<Image Source="Assets/PowerRename.png" Width="16" Height="16" VerticalAlignment="Top" Margin="20,9,0,0"/>
|
||||
<TextBlock Text="PowerRename" Style="{StaticResource CaptionTextBlockStyle}" Margin="18,8,8,0" VerticalAlignment="Top" />
|
||||
</StackPanel>-->
|
||||
</Grid>
|
||||
</Window>
|
||||
|
Loading…
Reference in New Issue
Block a user