在wpf中设置ScrollViewer的滚动范围
我在 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 个 TextBlock。我必须将滚动条移动到第 15 个 TextBlock)
I am using a ScrollViewer in WPF. My XAML is as follows ::
<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>
I want to know how to set the scrollbar to the selected TextBlock
(say around 25 TextBlocks gets displayed. I have to move the scrollbar to 15th TextBlock)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FrameworkElement.BringIntoView 方法
FrameworkElement.BringIntoView Method