Is there a Xaml ComboBoxItem equivalent for an HTML select value property?
<select>
<option value=1>Test 1</option>
<option value=2>Test 2</option>
<option value=3>Test 3</option>
</select>
Doesn't seem like there's a way to do that with Xaml?
<ComboBox>
<ComboBoxItem Content="Test 1" />
<ComboBoxItem Content="Test 2" />
<ComboBoxItem Content="Test 3" />
</ComboBox>
Obviously, I'd like the user to select and option and then be able to pull the value (ID) for that selection to work with instead of having to do a lookup from the text/content value.