I have just started using WPF forms instead of Windows Forms forms. In a Windows Forms form I could just do:
ComboBox.SelectedValue.toString();
How about these:
string yourstringname = (yourComboBox.SelectedItem as ComboBoxItem).Content.ToString();