I tried using the following method, but it doesn't seem to work on databound listbox.
mylistbox.ScrollIntoView(mylistbox.Items[mylistbox.Items.Count - 1])
I also tried to grab the IScrollProvider with no success:
var lbItemAutomation = (ListBoxAutomationPeer)ListBoxAutomationPeer.CreatePeerForElement(mylistbox);
var listBoxScroller = (IScrollProvider)lbItemAutomation.GetPattern(PatternInterface.Scroll); <-- returns null value
Thanks, Ricky
UPDATE 4/1: After retried, I confirm the first method works. However, It will be nice the get the second method works since you can scroll by percentage through this method. So any help will be appreciated.