在WebView中,我使用WP 8.1加载
HTML元素.每当内容超出WebView高度时,滚动都没有问题.我的问题是我在WebView的顶部有XAML元素,它们必须与WebView滚动一起滚动.
原文链接:https://www.f2er.com/windows/365264.html源代码:
<ScrollViewer> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Grid VerticalAlignment="Top" > <StackPanel x:name="xamlelement" Margin="15 20 0 0"> <textblock/> ------- ------- ------- </StackPanel> </Grid> <Grid x:Name="testgrid" Grid.Row="1"> <WebView Margin="0 30 0 0" x:Name="msgContent" > </WebView> </Grid> </Grid> </ScrollViewer>
每当WebView元素“msgContent”滚动时,我都希望stackpanel“xamlelement”与WebView一起滚动.