I&#39;m seeing some weirdness - I had a small popup dialog working in WPF/IPY where I had a ListBox with way too many elements to display, say about 30 or so where the available space would hold 4 or 5. I selected one of the elements (a ListBoxItem in the single selection ListBox), and executed <a href="http://msdn.microsoft.com/en-us/library/ms598110.aspx">BringIntoView<span>()</span></a> on the ListBoxItem. Worked great, the selected item showed up.<br>

<br>Now, I&#39;ve had to add more stuff to the dialog (an on-screen touch keyboard) and made the whole dialog modal; now I can&#39;t get the BringIntoView() to work. I have handlers on several events to try and get the BringIntoView() to happen, considering it has to be fired while it is Visible, and the handlers are getting fired, but I never see the selected item get scrolled into view. I&#39;ve even attached handlers to some unrelated events like TextBox.TextChanged that I *know* are happening well after the whole dialog is rendered. Still no luck. Everything else in the ListBox works just as it did before, but now I can no longer show the &#39;default&#39; item when the dialog starts. Anyone have any interesting clues? I&#39;ve been at this most of the day trying different handlers, etc. and it&#39;s making no sense whatsoever.<br>

Thanks,<br>Ken<br>