VB.net 列表框自动滚动
好吧,我正在尝试自动滚动我的列表框或以相反的方式显示所有内容,就像喊箱一样。
请在此处发布代码以了解如何执行此操作。我尝试了很多方法,但它们要么给我错误,要么不起作用。
Well I am trying to autoscroll my ListBox or display everything the opposite way just like a shoutbox.
Please post the code here on how to do it. I have tried many ways but they either gave me errors or didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
男人试试这个:
它有效。我总是用它。
Man try this:
It works. I always use it.
这是我在 vb.net 2008 pro 上使用的,它对我有用。
只需确保您没有将其设置为多选即可。
This is what I use on vb.net 2008 pro and it works for me.
Just make sure you don't have it set to multi select.
只需使用
ListBox.TopIndex
属性即可。这是它的帮助:
http:// msdn.microsoft.com/en-us/library/system.windows.forms.listbox.topindex.aspx
或者,您可以将新项目插入到顶部而不是底部。
不过,作为一般提示,如果您在使用
ListBox
执行所需操作时遇到问题,则可能值得在详细信息模式下使用ListView
。Just usethe
ListBox.TopIndex
property.Here's the help for it:
http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.topindex.aspx
Or otherwise you could just insert the new items on the top rather than the bottom.
As a general tip though, if you're having problems getting the
ListBox
to do what you need, it might be worth using aListView
in details mode instead.