can we retrieve the content from combobox without data binding? This is my xaml code
 <ComboBox x:Name="Choice" Header="Choice your eating time" PlaceholderText="Pilih" Width="200" SelectionChanged="Choice_SelectionChanged">
            <ComboBoxItem Content="Breakfast" />
            <ComboBoxItem Content="Lunch" />
            <ComboBoxItem Content="Dinner"/>
 </ComboBox>
I tried with choice.SelectedItem.ToString() but the result will be Windows.UI.XAML.ComboBox, not the content of combobox. I want to pass it into listbox and when I used choice.SelectedValue.ToString() it contain same result with SelectedItem. 
 
     
    