In my windows store app (xaml c# using prism for windows rt) I have on a page a combo box that is filled with a list of object and when that list is filled i want to select the first one by default. all this is event driven by that i mean that
an even triggers the load of the combo and when the combo is filled and the selected item is null then i use FirstOrDefault() to set the first item.
When i navigate to that page the first time it does not show the selected item but the second time it does (with different data but the right thing happens)
Is there a way to fix that?
If you need code to understand what I'm saying I could whip some,...