listbox

WP7 move listboxitem beyond item borders

Hello, I have a listbox with a custom itemtemplate (stackpanels). I try to animate the items so that they all move down from the top of the listbox. The problem is that when I modify the Y coordinate, it moves the listboxitem text only inside the item's boundaries, so I cannot simulate falling items down from the top. <DataTemplate...

WP7: ListBox ScrollToTop ?

In a Windows Phone 7 Silverlight app, I have a ListBox with a lot of items, that are generated dynamically from an external data source. One of these items will be "current", so I would like to programmatically scroll the ListBox so the item appears as the topmost visible item in the ListBox - so the user doesn't have to. There is li...

Refresh ListBox After Button clicked

Basically I have a page with a button and listbox on it. When the button is clicked, I use a ClickHandler to add another item to the listbox. However, the listbox is not refreshed unless I use the browser refresh button. Is there a way to do this programmatically without refreshing the entire Window? Thank you ...