vote up 0 vote down star
1

Hello, Does anyone knows how to make the Infragistics UltraListView control scrolls down automatically whenever a new item is added?

flag

20% accept rate
This is not really a programming question, more of a support question for Infragistics support team. – Lazarus Aug 20 at 12:24
If questions about whether or not you need to know c before programming in C# are okay on here, and get a dozen + votes, I think a question asking about how to do something with a specific control is okay. Besides, their support site sucks. :) – Sterno Aug 20 at 14:40
1  
As shown in the accepted answer, it was a programming question (an issue solvable by code) – Khalil Dahab Aug 20 at 21:34

2 Answers

vote up 2 vote down check

try this:

UltraListViewItem i= listView.Items[ listView.Items.Count-1 ];

ISelectionManager selectionManager = listView as Infragistics.Win.ISelectionManager;

selectionManager.SelectItem(i, true);

i.Activate();

link|flag
vote up 0 vote down

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)

    UltraListView1.PerformAction(UltraWinListView.UltraListViewAction.ScrollVerticalBySmallIncrement)

And yes, it's a programming question. ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.