2021-07-05 16:25:23 +02:00
|
|
|
<Page
|
2020-03-31 14:32:22 +02:00
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.ImageResizerPage"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2024-01-12 18:01:40 +01:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2022-11-23 19:57:09 +01:00
|
|
|
xmlns:converters="using:Microsoft.PowerToys.Settings.UI.Converters"
|
2020-03-31 14:32:22 +02:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2022-11-23 19:57:09 +01:00
|
|
|
xmlns:models="using:Microsoft.PowerToys.Settings.UI.Library"
|
2024-01-12 18:01:40 +01:00
|
|
|
xmlns:tkcontrols="using:CommunityToolkit.WinUI.Controls"
|
2022-04-19 22:00:28 +02:00
|
|
|
xmlns:toolkitconverters="using:CommunityToolkit.WinUI.UI.Converters"
|
2023-09-14 18:41:31 +02:00
|
|
|
xmlns:ui="using:CommunityToolkit.WinUI"
|
2022-11-23 19:57:09 +01:00
|
|
|
x:Name="RootPage"
|
|
|
|
|
AutomationProperties.LandmarkType="Main"
|
|
|
|
|
mc:Ignorable="d">
|
2021-07-26 19:00:53 +02:00
|
|
|
<Page.Resources>
|
|
|
|
|
<converters:ImageResizerFitToStringConverter x:Key="ImageResizerFitToStringConverter" />
|
|
|
|
|
<converters:ImageResizerUnitToStringConverter x:Key="ImageResizerUnitToStringConverter" />
|
2022-11-23 19:57:09 +01:00
|
|
|
<toolkitconverters:BoolToObjectConverter
|
|
|
|
|
x:Key="BoolToComboBoxIndexConverter"
|
|
|
|
|
FalseValue="1"
|
|
|
|
|
TrueValue="0" />
|
2021-07-26 19:00:53 +02:00
|
|
|
</Page.Resources>
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:SettingsPageControl x:Uid="ImageResizer" ModuleImageSource="ms-appx:///Assets/Settings/Modules/ImageResizer.png">
|
|
|
|
|
<controls:SettingsPageControl.ModuleContent>
|
2023-01-11 17:45:06 +01:00
|
|
|
<StackPanel ChildrenTransitions="{StaticResource SettingsCardsAnimations}">
|
2024-01-12 18:01:40 +01:00
|
|
|
<tkcontrols:SettingsCard
|
2022-11-23 19:57:09 +01:00
|
|
|
x:Uid="ImageResizer_EnableToggle"
|
2023-07-20 00:12:46 +01:00
|
|
|
HeaderIcon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsImageResizer.png}"
|
2024-01-03 16:41:26 +01:00
|
|
|
IsEnabled="{x:Bind ViewModel.IsEnabledGpoConfigured, Mode=OneWay, Converter={StaticResource BoolNegationConverter}}">
|
2023-01-31 00:00:11 +01:00
|
|
|
<ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.IsEnabled, Mode=TwoWay}" />
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
2020-04-26 17:34:03 -07:00
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<InfoBar
|
2024-01-25 14:59:00 +01:00
|
|
|
x:Uid="GPO_SettingIsManaged"
|
2022-10-26 14:02:31 +01:00
|
|
|
IsClosable="False"
|
2024-01-03 16:41:26 +01:00
|
|
|
IsOpen="{x:Bind ViewModel.IsEnabledGpoConfigured, Mode=OneWay}"
|
|
|
|
|
IsTabStop="{x:Bind ViewModel.IsEnabledGpoConfigured, Mode=OneWay}"
|
2022-11-23 19:57:09 +01:00
|
|
|
Severity="Informational" />
|
2021-08-23 19:48:52 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:SettingsGroup x:Uid="ImageResizer_CustomSizes" IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
|
|
|
|
|
<tkcontrols:SettingsCard x:Uid="ImageResizer_Presets" HeaderIcon="{ui:FontIcon Glyph=}">
|
2022-11-23 19:57:09 +01:00
|
|
|
<Button
|
|
|
|
|
x:Uid="ImageResizer_AddSizeButton"
|
|
|
|
|
Click="AddSizeButton_Click"
|
|
|
|
|
Style="{ThemeResource AccentButtonStyle}" />
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
2022-11-23 19:57:09 +01:00
|
|
|
<ListView
|
|
|
|
|
x:Name="ImagesSizesListView"
|
|
|
|
|
x:Uid="ImagesSizesListView"
|
|
|
|
|
ContainerContentChanging="ImagesSizesListView_ContainerContentChanging"
|
|
|
|
|
ItemsSource="{x:Bind ViewModel.Sizes, Mode=TwoWay}"
|
|
|
|
|
SelectionMode="None">
|
2021-08-23 19:48:52 +02:00
|
|
|
<ListView.ItemTemplate>
|
2023-01-31 00:00:11 +01:00
|
|
|
<DataTemplate x:Name="SingleLineDataTemplate" x:DataType="models:ImageSize">
|
2024-01-12 18:01:40 +01:00
|
|
|
<tkcontrols:SettingsCard Header="{x:Bind Name, Mode=OneWay}">
|
|
|
|
|
<tkcontrols:SettingsCard.Resources>
|
2022-11-23 19:57:09 +01:00
|
|
|
<x:Double x:Key="SettingsCardLeftIndention">42</x:Double>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard.Resources>
|
|
|
|
|
<tkcontrols:SettingsCard.Description>
|
2022-11-23 19:57:09 +01:00
|
|
|
<StackPanel
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
Margin="0,4,0,0"
|
|
|
|
|
Orientation="Horizontal">
|
|
|
|
|
<TextBlock
|
|
|
|
|
Margin="0,0,4,0"
|
|
|
|
|
Style="{ThemeResource SecondaryTextStyle}"
|
|
|
|
|
Text="{x:Bind Fit, Mode=OneWay, Converter={StaticResource ImageResizerFitToStringConverter}}" />
|
|
|
|
|
<TextBlock
|
|
|
|
|
Margin="0,0,4,0"
|
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
|
Style="{ThemeResource SecondaryTextStyle}"
|
|
|
|
|
Text="{x:Bind Width, Mode=OneWay}" />
|
|
|
|
|
<TextBlock
|
|
|
|
|
Margin="0,5,4,0"
|
|
|
|
|
AutomationProperties.AccessibilityView="Raw"
|
|
|
|
|
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
|
|
|
|
FontSize="10"
|
|
|
|
|
Style="{ThemeResource SecondaryTextStyle}"
|
|
|
|
|
Text=""
|
2024-01-03 16:41:26 +01:00
|
|
|
Visibility="{x:Bind EnableEtraBoxes, Mode=OneWay, Converter={StaticResource BoolToVisibilityConverter}}" />
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBlock
|
|
|
|
|
Margin="0,0,4,0"
|
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
|
Style="{ThemeResource SecondaryTextStyle}"
|
|
|
|
|
Text="{x:Bind Height, Mode=OneWay}"
|
2024-01-03 16:41:26 +01:00
|
|
|
Visibility="{x:Bind EnableEtraBoxes, Mode=OneWay, Converter={StaticResource BoolToVisibilityConverter}}" />
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBlock
|
|
|
|
|
Margin="0,0,4,0"
|
|
|
|
|
Style="{ThemeResource SecondaryTextStyle}"
|
|
|
|
|
Text="{x:Bind Unit, Mode=OneWay, Converter={StaticResource ImageResizerUnitToStringConverter}, ConverterParameter=ToLower}" />
|
|
|
|
|
</StackPanel>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard.Description>
|
2022-11-23 19:57:09 +01:00
|
|
|
<StackPanel
|
|
|
|
|
Grid.Column="2"
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
Orientation="Horizontal"
|
|
|
|
|
Spacing="8">
|
|
|
|
|
<Button
|
|
|
|
|
x:Uid="EditButton"
|
|
|
|
|
Width="40"
|
|
|
|
|
Height="36"
|
|
|
|
|
Content=""
|
|
|
|
|
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
|
|
|
|
Style="{StaticResource SubtleButtonStyle}">
|
|
|
|
|
<ToolTipService.ToolTip>
|
|
|
|
|
<TextBlock x:Uid="EditTooltip" />
|
|
|
|
|
</ToolTipService.ToolTip>
|
|
|
|
|
<Button.Flyout>
|
2023-11-09 18:08:42 +01:00
|
|
|
<Flyout x:Uid="ImageResizer_EditSize" ShouldConstrainToRootBounds="False">
|
|
|
|
|
<StackPanel Spacing="16">
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBox
|
|
|
|
|
x:Uid="ImageResizer_Name"
|
|
|
|
|
Width="240"
|
|
|
|
|
HorizontalAlignment="Left"
|
2024-01-03 16:41:26 +01:00
|
|
|
Text="{x:Bind Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
|
2021-07-26 19:00:53 +02:00
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<ComboBox
|
|
|
|
|
x:Uid="ImageResizer_Fit"
|
|
|
|
|
Width="240"
|
|
|
|
|
HorizontalAlignment="Left"
|
2024-01-03 16:41:26 +01:00
|
|
|
SelectedIndex="{x:Bind Fit, Mode=TwoWay}">
|
2021-07-26 19:00:53 +02:00
|
|
|
<ComboBoxItem x:Uid="ImageResizer_Sizes_Fit_Fill" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_Sizes_Fit_Fit" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_Sizes_Fit_Stretch" />
|
2022-11-23 19:57:09 +01:00
|
|
|
</ComboBox>
|
2021-07-26 19:00:53 +02:00
|
|
|
|
2023-01-31 00:00:11 +01:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
2022-11-23 19:57:09 +01:00
|
|
|
<NumberBox
|
|
|
|
|
x:Uid="ImageResizer_Width"
|
|
|
|
|
Width="116"
|
|
|
|
|
Minimum="0"
|
|
|
|
|
SpinButtonPlacementMode="Compact"
|
2024-01-03 16:41:26 +01:00
|
|
|
Value="{x:Bind Width, Mode=TwoWay}" />
|
2021-07-26 19:00:53 +02:00
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<NumberBox
|
|
|
|
|
x:Uid="ImageResizer_Height"
|
|
|
|
|
Width="116"
|
|
|
|
|
Minimum="0"
|
|
|
|
|
SpinButtonPlacementMode="Compact"
|
2024-01-03 16:41:26 +01:00
|
|
|
Visibility="{x:Bind EnableEtraBoxes, Mode=OneWay, Converter={StaticResource BoolToVisibilityConverter}}"
|
|
|
|
|
Value="{x:Bind Height, Mode=TwoWay}" />
|
2021-07-26 19:00:53 +02:00
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
</StackPanel>
|
|
|
|
|
<ComboBox
|
|
|
|
|
x:Uid="ImageResizer_Size"
|
|
|
|
|
Width="240"
|
2024-01-03 16:41:26 +01:00
|
|
|
SelectedIndex="{Binding Unit, Mode=TwoWay}">
|
2022-11-23 19:57:09 +01:00
|
|
|
<ComboBoxItem x:Uid="ImageResizer_Sizes_Units_CM" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_Sizes_Units_Inches" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_Sizes_Units_Percent" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_Sizes_Units_Pixels" />
|
|
|
|
|
</ComboBox>
|
2021-07-26 19:00:53 +02:00
|
|
|
</StackPanel>
|
2022-11-23 19:57:09 +01:00
|
|
|
</Flyout>
|
|
|
|
|
</Button.Flyout>
|
2021-07-26 19:00:53 +02:00
|
|
|
</Button>
|
|
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<Button
|
|
|
|
|
x:Name="RemoveButton"
|
|
|
|
|
x:Uid="RemoveButton"
|
|
|
|
|
Width="40"
|
|
|
|
|
Height="36"
|
|
|
|
|
Click="DeleteCustomSize"
|
|
|
|
|
CommandParameter="{Binding Id}"
|
|
|
|
|
Content=""
|
|
|
|
|
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
|
|
|
|
Style="{StaticResource SubtleButtonStyle}">
|
|
|
|
|
<ToolTipService.ToolTip>
|
|
|
|
|
<TextBlock x:Uid="RemoveTooltip" />
|
|
|
|
|
</ToolTipService.ToolTip>
|
|
|
|
|
</Button>
|
|
|
|
|
</StackPanel>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
2022-11-23 19:57:09 +01:00
|
|
|
</DataTemplate>
|
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
|
</ListView>
|
2024-01-12 18:01:40 +01:00
|
|
|
</controls:SettingsGroup>
|
2020-04-26 17:34:03 -07:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:SettingsGroup x:Uid="Encoding" IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
|
|
|
|
|
<tkcontrols:SettingsCard x:Uid="ImageResizer_FallBackEncoderText">
|
2024-01-03 16:41:26 +01:00
|
|
|
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind ViewModel.Encoder, Mode=TwoWay}">
|
2022-11-23 19:57:09 +01:00
|
|
|
<ComboBoxItem x:Uid="ImageResizer_FallbackEncoder_PNG" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_FallbackEncoder_BMP" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_FallbackEncoder_JPEG" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_FallbackEncoder_TIFF" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_FallbackEncoder_WMPhoto" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_FallbackEncoder_GIF" />
|
|
|
|
|
</ComboBox>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
2020-03-31 14:32:22 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<tkcontrols:SettingsCard x:Uid="ImageResizer_Encoding">
|
2022-11-23 19:57:09 +01:00
|
|
|
<Slider
|
|
|
|
|
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
|
|
|
|
Maximum="100"
|
|
|
|
|
Minimum="0"
|
2024-01-03 16:41:26 +01:00
|
|
|
Value="{x:Bind ViewModel.JPEGQualityLevel, Mode=TwoWay}" />
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
2021-08-23 19:48:52 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<tkcontrols:SettingsCard x:Uid="ImageResizer_PNGInterlacing">
|
2024-01-03 16:41:26 +01:00
|
|
|
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind ViewModel.PngInterlaceOption, Mode=TwoWay}">
|
2022-11-23 19:57:09 +01:00
|
|
|
<ComboBoxItem x:Uid="Default" />
|
|
|
|
|
<ComboBoxItem x:Uid="On" />
|
|
|
|
|
<ComboBoxItem x:Uid="Off" />
|
|
|
|
|
</ComboBox>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
2021-08-23 19:48:52 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<tkcontrols:SettingsCard x:Uid="ImageResizer_TIFFCompression">
|
2024-01-03 16:41:26 +01:00
|
|
|
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind ViewModel.TiffCompressOption, Mode=TwoWay}">
|
2022-11-23 19:57:09 +01:00
|
|
|
<ComboBoxItem x:Uid="ImageResizer_ENCODER_TIFF_Default" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_ENCODER_TIFF_None" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_ENCODER_TIFF_CCITT3" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_ENCODER_TIFF_CCITT4" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_ENCODER_TIFF_LZW" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_ENCODER_TIFF_RLE" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_ENCODER_TIFF_Zip" />
|
|
|
|
|
</ComboBox>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
|
|
|
|
</controls:SettingsGroup>
|
2021-08-23 19:48:52 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:SettingsGroup x:Uid="File" IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
|
|
|
|
|
<tkcontrols:SettingsCard x:Uid="ImageResizer_FilenameFormatHeader">
|
2023-01-31 00:00:11 +01:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="4">
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBox
|
|
|
|
|
x:Uid="ImageResizer_FilenameFormatPlaceholder"
|
|
|
|
|
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
2024-01-03 16:41:26 +01:00
|
|
|
Text="{x:Bind ViewModel.FileName, Mode=TwoWay}" />
|
2022-11-23 19:57:09 +01:00
|
|
|
<Button
|
|
|
|
|
x:Uid="ImageResizer_FilenameParameters"
|
|
|
|
|
Content=""
|
|
|
|
|
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
|
|
|
|
Style="{StaticResource SubtleButtonStyle}">
|
|
|
|
|
<Button.Flyout>
|
2023-11-09 18:08:42 +01:00
|
|
|
<Flyout ShouldConstrainToRootBounds="False">
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBlock x:Name="FileFormatTextBlock">
|
|
|
|
|
<Run x:Uid="ImageResizer_FileFormatDescription" />
|
|
|
|
|
<LineBreak />
|
|
|
|
|
<LineBreak />
|
|
|
|
|
<Run FontWeight="Bold" Text="%1" />
|
|
|
|
|
<Run Text=" - " />
|
|
|
|
|
<Run x:Uid="ImageResizer_Formatting_Filename" />
|
|
|
|
|
<LineBreak />
|
|
|
|
|
<Run FontWeight="Bold" Text="%2" />
|
|
|
|
|
<Run Text=" - " />
|
|
|
|
|
<Run x:Uid="ImageResizer_Formatting_Sizename" />
|
|
|
|
|
<LineBreak />
|
|
|
|
|
<Run FontWeight="Bold" Text="%3" />
|
|
|
|
|
<Run Text=" - " />
|
|
|
|
|
<Run x:Uid="ImageResizer_Formatting_SelectedWidth" />
|
|
|
|
|
<LineBreak />
|
|
|
|
|
<Run FontWeight="Bold" Text="%4" />
|
|
|
|
|
<Run Text=" - " />
|
|
|
|
|
<Run x:Uid="ImageResizer_Formatting_SelectedHeight" />
|
|
|
|
|
<LineBreak />
|
|
|
|
|
<Run FontWeight="Bold" Text="%5" />
|
|
|
|
|
<Run Text=" - " />
|
|
|
|
|
<Run x:Uid="ImageResizer_Formatting_ActualWidth" />
|
|
|
|
|
<LineBreak />
|
|
|
|
|
<Run FontWeight="Bold" Text="%6" />
|
|
|
|
|
<Run Text=" - " />
|
|
|
|
|
<Run x:Uid="ImageResizer_Formatting_ActualHeight" />
|
|
|
|
|
</TextBlock>
|
|
|
|
|
</Flyout>
|
|
|
|
|
</Button.Flyout>
|
|
|
|
|
</Button>
|
|
|
|
|
</StackPanel>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
2021-08-23 19:48:52 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<tkcontrols:SettingsCard x:Uid="ImageResizer_FileModifiedDate">
|
2024-01-03 16:41:26 +01:00
|
|
|
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind ViewModel.KeepDateModified, Mode=TwoWay, Converter={StaticResource ReverseBoolToComboBoxIndexConverter}}">
|
2022-11-23 19:57:09 +01:00
|
|
|
<ComboBoxItem x:Uid="ImageResizer_UseOriginalDate" />
|
|
|
|
|
<ComboBoxItem x:Uid="ImageResizer_UseResizeDate" />
|
|
|
|
|
</ComboBox>
|
2024-01-12 18:01:40 +01:00
|
|
|
</tkcontrols:SettingsCard>
|
|
|
|
|
</controls:SettingsGroup>
|
2020-07-24 21:02:56 +02:00
|
|
|
</StackPanel>
|
2020-03-31 14:32:22 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
</controls:SettingsPageControl.ModuleContent>
|
2020-07-24 21:02:56 +02:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:SettingsPageControl.PrimaryLinks>
|
|
|
|
|
<controls:PageLink x:Uid="LearnMore_ImageResizer" Link="https://aka.ms/PowerToysOverview_ImageResizer" />
|
|
|
|
|
</controls:SettingsPageControl.PrimaryLinks>
|
|
|
|
|
<controls:SettingsPageControl.SecondaryLinks>
|
|
|
|
|
<controls:PageLink Link="https://github.com/bricelam/ImageResizer/" Text="Brice Lambson's ImageResizer" />
|
|
|
|
|
</controls:SettingsPageControl.SecondaryLinks>
|
|
|
|
|
</controls:SettingsPageControl>
|
2020-03-31 14:32:22 +02:00
|
|
|
</Page>
|