最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp.net C# ListBox 自动滚动到底部方法总结
时间:2022-06-25 03:52:59 编辑:袖梨 来源:一聚教程网
方法一:
代码如下 | 复制代码 |
this.listBox1.Items.Add("new line"); this.listBox1.SelectedIndex = this.listBox1.Items.Count - 1; this.listBox1.SelectedIndex = -1; |
在添加记录后,先选择最后一条记录,滚动条会自动到底部,再取消选择。
缺点是需两次设置选中条目,中间可能会出现反色的动画,影响美观。
方法二:
代码如下 | 复制代码 |
this.listBox1.Items.Add("new line"); this.listBox1.TopIndex = this.listBox1.Items.Count - (int)(this.listBox1.Height / this.listBox1.ItemHeight); |
通过计算ListBox显示的行数,设置TopIndex属性(ListBox中第一个可见项的索引)而达到目的。
方法二 plus:智能滚动
代码如下 | 复制代码 |
bool scroll = false; if(this.listBox1.TopIndex == this.listBox1.Items.Count - (int)(this.listBox1.Height / this.listBox1.ItemHeight)) scroll = true; this.listBox1.Items.Add("new line"); if (scroll) this.listBox1.TopIndex = this.listBox1.Items.Count - (int)(this.listBox1.Height / this.listBox1.ItemHeight); |
在添加新记录前,先计算滚动条是否在底部,从而决定添加后是否自动滚动。
相关文章
- 胜利女神新的希望阵容推荐及思路介绍 07-03
- 云顶之弈s14辛源泽丽女枪阵容攻略 07-03
- 魔兽世界11.1熊德地下堡宏命令代码汇总 07-03
- 《鸣潮》2.3前瞻兑换码大全 07-03
- 不良人破局观星楼玩法介绍 07-03
- ps怎样把人物图片制作成漫画效果 ps人物转漫画效果教程 07-03