WPF-Control/WPF控件-16-ScrollBar/MainWindow.xaml

18 lines
781 B
Plaintext
Raw Normal View History

2025-01-09 10:58:55 +08:00
<Window x:Class="WPF控件_16_RangeBase.MainWindow"
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"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<!--
当前值: Value="0"
允许最大值Maximum="100"
允许最小值Minimum="0"
最小变化值SmallChange="5"
最大变化值LargeChange="20"
-->
<ScrollBar Name="BunnyScrollBar" Value="0" Maximum="100" Minimum="0" SmallChange="5" LargeChange="20" />
</Grid>
</Window>