如何在添加新项目后自动滚动列表框,但前提是滚动条在添加项目之前位于底部?
How to autoscroll a Listbox after adding a new item, but only if the scrollbar is at the bottom before the item is added?
你可以试试:
listBox1.SelectedIndex = listBox1.Items.Count - 1;
listBox1.SelectedIndex = -1;
这篇关于在特定情况下自动滚动列表框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!