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

18 lines
781 B
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>