• C# ListBox 自动滚动到底部 方法:


    在ListBox中添加一条记录(ListBox.Items.Add方法)后,滚动条会自动回到顶部。我们可能更希望它自动滚动到底部,简要介绍几种方法。

      方法一:

         

    1 this.listBox1.Items.Add("new line"); 
    2 this.listBox1.SelectedIndex = this.listBox1.Items.Count - 1; 
    3 this.listBox1.SelectedIndex = -1;

      在添加记录后,先选择最后一条记录,滚动条会自动到底部,再取消选择。

      缺点是需两次设置选中条目,中间可能会出现反色的动画,影响美观。

      方法二:

    1 this.listBox1.Items.Add("new line");
    2 this.listBox1.TopIndex = this.listBox1.Items.Count - (int)(this.listBox1.Height / this.listBox1.ItemHeight);

      通过计算ListBox显示的行数,设置TopIndex属性(ListBox中第一个可见项的索引)而达到目的。

      方法二 plus:智能滚动

    1 bool scroll = false; 
    2 if(this.listBox1.TopIndex == this.listBox1.Items.Count - (int)(this.listBox1.Height / this.listBox1.ItemHeight)) 
    3 scroll = true;
    4  this.listBox1.Items.Add("new line"); 
    5 if (scroll)
    6  this.listBox1.TopIndex = this.listBox1.Items.Count - (int)(this.listBox1.Height / this.listBox1.ItemHeight);

      在添加新记录前,先计算滚动条是否在底部,从而决定添加后是否自动滚动。

      既可以在需要时实现自动滚动,又不会在频繁添加记录时干扰用户对滚动条的控制。

  • 相关阅读:
    中国剩余定理(CRT) & 扩展中国剩余定理(ExCRT)总结
    各种求逆元
    A*(A_star)搜索总结
    线段树总结
    C++的STL
    Unable to make the session state request to the session state server处理方法
    判断UserAgent是否来自微信
    VS2010 EntityFramework Database First
    VS2010类似Eclipse文件查找功能-定位到
    Newtonsoft.Json随手记
  • 原文地址:https://www.cnblogs.com/shenbing/p/6292363.html
Copyright © 2020-2023  润新知