我正在使用silverlight4当我从其他Silverlight页面导航到此页面时我已经开发了一个页面位置位于页面底部。我需要将焦点设置在silverlight页面的顶部。我不使用ScrollViewer在我的页面上。
答案 0 :(得分: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);
然后您的垂直滚动将始终位于顶部。