I read a lot of things here on SO and on the web but didnt find an answer... I got a ComboBox that is binded to a Collection which is a property of a code-behind property, like this :
<ComboBox ItemsSource="{Binding Path=LocalizationUtil.AvailableLocales}"/>
This works but the thing is that when my UI is loaded, no default value is selected and I'd like to set a value 'cause I KNOW that my Collection contains at least the string "default".
I saw a lot of things using SelectedItem
or SelectedValue
but this create a sort of Binding and I want it to be initiated only ONCE, at start.
How can I do that ?