Hello, Does anyone knows how to make the Infragistics UltraListView control scrolls down automatically whenever a new item is added?
|
1
|
|||||||||
|
|
|
try this: UltraListViewItem i= listView.Items[ listView.Items.Count-1 ]; ISelectionManager selectionManager = listView as Infragistics.Win.ISelectionManager; selectionManager.SelectItem(i, true); i.Activate(); |
||
|
|
|
|
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. ;) |
||
|
|
