How do I get the selected value (eg Option1) as a string from my example below. I\'ve tried loads of suggestions on Google but can\'t get the string.>
Option1
string
Update your code to get the Content of comboboxItem.
var selectedValue = ((ComboBoxItem)selectOption.SelectedItem).Content.ToString();