0

然后我点击文本框碰巧滚动屏幕键盘没有关闭这个文本框。如果这个TextBox移动到上面,我如何也让顶部自动滚动页面?我尝试使用ScrollViewer,并使用他的方法InvalidateScrollInfo()Scroll.UpdateLayout()但页面没有移动。这个来自我页面的 xaml:

<ScrollViewer x:Name="Scroll">
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}" Margin="12,0"/>
            <TextBlock Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
        </StackPanel>

        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
            <Canvas>
                <TextBox x:Name="SearchTB" Width="200" Height="72" TextChanged="TextBox_OnTextChanged" Canvas.Left="112" Canvas.Top="297"/>
            </Canvas>
        </Grid>

    </Grid>
</ScrollViewer>
4

1 回答 1

0

您应该调用ScrollToVerticalOffset父 ScrollViewer,参数为 0 以滚动到顶部。

于 2013-05-28T18:56:35.997 回答