I am facing a problem while working with a WPF ComboBox. My situation is that I have a ComboBox that is displaying some values. I am adding ContentControls to Combo
ContentControl
private void utc_SelectionChanged(object sender, SelectionChangedEventArgs e) { var items = e.AddedItems; ComboBoxItem utcSel = (ComboBoxItem)items[0]; string utcStr = utcSel.Content.ToString(); }