WPF ItemsControl - how to know when the items finished loading, so that I can focus the first one?
Posted
by Tomáš Kafka
on Stack Overflow
See other posts from Stack Overflow
or by Tomáš Kafka
Published on 2010-03-22T12:39:40Z
Indexed on
2010/03/22
12:41 UTC
Read the original article
Hit count: 331
Hi everyone, I have an ItemsControl in my View, that is bound to an ObservableCollection from ViewModel. The collection is filled, and afterwards an event from VM to view is raised (think search results and SearchFinished event).
I would like to move keyboard focus to the first item in an ItemsControl, but when I do it in View's code-behind when handling SearchFinished, the items are not yet rendered (the collection is filled already, but wpf's rendering is asynchronous and didn't happen yet), so there is nothing to focus (Focus() needs to have the items' visual tree already constructed).
I wanted to do (myItemsControl.ItemContainerGenerator.ContainerFromIndex(0) as UIElement).Focus();, but as the 0th item is not yet loaded, ContainerFromIndex(0) returns null.
I tried delaying it with Dispatcher.BeginInvoke... with low priority, but that is dependent on exact timing and usually doesn't work.
How can I wait until the first item in ItemsControl is Loaded?
© Stack Overflow or respective owner