값이 증가하면 사용자가 스크롤하여 양식을 위에서 아래로 스크롤하는 경우 ScrollViewer의 VerticalOffset 속성을 사용하여 이동을 감지 할 수 있습니다. 값이 감소하면 사용자가 아래에서 위로 스크롤됩니다. ScrollViewer의 ViewChanged 이벤트를 수신하고 필요한 로직을 수행 할 수 있습니다. 아래는 아이디어를 보여주기위한 Binding 샘플입니다.
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock VerticalAlignment="Center" Text="{Binding VerticalOffset, ElementName=tst,Mode=OneWay}"/>
<ScrollViewer Grid.Row="1" x:Name="tst" ViewChanged="tst_ViewChanged">
<StackPanel Background="Gray" Height="2500">
</StackPanel>
</ScrollViewer>
</Grid>
출력 :