我在 xaml 中尝试了一个简单的 ScrollViewer,如下所示:
<ScrollViewer Height="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type StackPanel}}, Path=Height}" ScrollViewer.VerticalScrollBarVisibility="Visible" CanContentScroll="True">
<DockPanel>
<StackPanel Name="StackPanel1" OverridesDefaultStyle="False" Width="230" Height="803"
VerticalAlignment="Top" HorizontalAlignment="Left" Margin="23,1,0,0">
....Something here
....Something here
....Something here
</StackPanel>
</DockPanel>
</ScrollViewer>
但我的问题是..我们是否有可能像使用 WPF 的任何 android 或 iphone 一样创建任何平滑滚动?
有任何想法吗?