我在WPF中使用ScrollViewer。我的XAML如下::
<ScrollViewer HorizontalScrollBarVisibility="Auto" x:Name="ScrollProcess">
<ItemsControl ItemsSource="{Binding Steps}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"></StackPanel>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock>Test Text</TextBlock>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
我想知道如何将滚动条设置为选定的TextBlock
(比如显示大约25个TextBlocks。我必须将滚动条移动到第15个TextBlock)