0
我在WPF中使用ScrollViewer。我的XAML是如下::在wpf中設置ScrollViewer的滾動範圍
<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)
棒極了!它工作很好yippie!我通過代碼操縱了一下來添加你的代碼,並通過使用附加的屬性來達到我的要求。 – GuruC 2010-11-24 10:07:58