18 lines
781 B
XML
18 lines
781 B
XML
<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> |