I have a combobox that I am trying to populate when a user selects a point. I can get Textbox's and Datepicker's to populate but I can't get a comboThe xaml
<ComboBox x:Name="Selection" Width="200">
<ComboBoxItem Tag="1" Content="1"/>
<ComboBoxItem Tag="2" Content="2"/>
<ComboBoxItem Tag="3" Content="3"/>
</ComboBox>
In the CS is have been able to isolate the value I need, I just can't force the combobox to show the selectionThe cs
string ss = Convert.ToString(g.Attributes["status"]);
Any help would be appreciated. Thanks!