当前位置:  开发笔记 > 编程语言 > 正文

设置ListBox的滚动条位置

如何解决《设置ListBox的滚动条位置》经验,为你挑选了1个好方法。

我可以以编程方式设置WPF ListBox的滚动条的位置吗?默认情况下,我希望它在中心.



1> Zamboni..:

要在ListBox中移动垂直滚动条,请执行以下操作:

    命名列表框(x:Name ="myListBox")

    为Window添加Loaded事件(Loaded ="Window_Loaded")

    使用方法实现Loaded事件:ScrollToVerticalOffset

这是一个工作样本:

XAML:


  
    
      
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
        Zamboni
      
    
  

C#

private void Window_Loaded(object sender, RoutedEventArgs e)
{
  // Get the border of the listview (first child of a listview)
  Decorator border = VisualTreeHelper.GetChild(myListBox, 0) as Decorator;
  if (border != null)
  {
    // Get scrollviewer
    ScrollViewer scrollViewer = border.Child as ScrollViewer;
    if (scrollViewer != null)
    {
      // center the Scroll Viewer...
      double center = scrollViewer.ScrollableHeight / 2.0;
      scrollViewer.ScrollToVerticalOffset(center);
    }
  }
}

推荐阅读
linjiabin43
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有