I have few items on my ComboBox items collection, and i\'d like to select one item from this list and set it as default item - when app starts - this item is al
Remember that collections in C# are zero-based (in other words, the first item in a collection is at position zero). If you have two items in your list, and you want to select the last item, use SelectedIndex = 1.