Skip to content

Commit

Permalink
fix: 修改模糊背景的滑块最大值为20
Browse files Browse the repository at this point in the history
  • Loading branch information
Shizuku-Nanami committed Sep 26, 2024
1 parent 294273b commit 4f59af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SYSTools/Pages/Configuration.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<Button Content="选择背景图片" Click="SelectBackgroundButton_Click" FontSize="15" VerticalAlignment="Center" Margin="0,0,0,10" HorizontalAlignment="Center"/>
<Button Content="清空背景图片" Click="DeleteBackgroundButton_Click" FontSize="15" VerticalAlignment="Center" HorizontalAlignment="Center"/>
<TextBlock Text="图片模糊度(实验性)" FontSize="15" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,25,0,0" />
<Slider VerticalAlignment="Center" Width="150" Minimum="0" Maximum="100" Value="{Binding Source={x:Static model:GlobalSettings.Instance}, Path=BackgroundImageBlurRadius, Mode=TwoWay}"/>
<Slider VerticalAlignment="Center" Width="150" Minimum="0" Maximum="20" Value="{Binding Source={x:Static model:GlobalSettings.Instance}, Path=BackgroundImageBlurRadius, Mode=TwoWay}"/>
</StackPanel>
<Image x:Name="BackgroundPreview" Height="150" HorizontalAlignment="Left" Margin="15,0,0,0">
<Image.Effect>
Expand Down

0 comments on commit 4f59af5

Please sign in to comment.