Infragistics UltraListView 自动滚动
有谁知道如何使 Infragistics UltraListView 控件在添加新项目时自动向下滚动?
Does anyone knows how to make the Infragistics UltraListView control scrolls down automatically whenever a new item is added?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
try this:
UltraListViewItem 有 BringIntoView() 方法,这可以解决问题。
UltraListViewItem has BringIntoView() method, which would do the trick.
对于简单的向下滚动,请使用 PerformAction 方法。有多种 Infragistics 常量可以用作参数... intellisense 提供了关于此的良好信息:
(VB)
是的,这是一个编程问题。 ;)
For a simple scroll down, use the PerformAction method. There are a variety of Infragistics constants that can be used as the argument... intellisense gives good info on this:
(VB)
And yes, it's a programming question. ;)