0

Silverlight4 を使用しています 他の Silverlight ページからこのページに移動すると、1 つのページが作成されました。位置はページの下部にあります。Silverlight ページの上にフォーカスを設定する必要があります。ページで ScrollViewer を使用していません。 .

4

1 に答える 1

1

MainPage.xaml ファイルを開き、コードを次のように置き換えます。

    <UserControl xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"  x:Class="ScrollViewerControl.MainPage"
    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"
    d:DesignHeight="300" d:DesignWidth="400">
    <Grid x:Name="LayoutRoot" Background="White">
        <ScrollViewer Height="300" Width="300" Name="scrollViewer1"
                    VerticalScrollBarVisibility="Auto"
                    HorizontalScrollBarVisibility="Auto">
            <ScrollViewer.Content>
                <StackPanel>
                  ' Content Here
                </StackPanel>
            </ScrollViewer.Content>            
        </ScrollViewer>
    </Grid>   
</UserControl>

ScollViewer のオフセットをゼロに設定します

scrollViewer1.ScrollToVerticalOffset(0); 

垂直スクロールは常に上になります。

于 2013-10-07T10:34:09.810 に答える