I have just started using WPF forms instead of Windows Forms forms. In a Windows Forms form I could just do:
ComboBox.SelectedValue.toString();
Well.. I found a simpler solution.
String s = comboBox1.Text;
This way I get the selected value as string.