A ComboBox that has been used to select an item
<UserControl x:Class='SilverlightApplication3.MainPage'
xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
xmlns:d='http://schemas.microsoft.com/expression/blend/2008'
xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006'
mc:Ignorable='d'
d:DesignWidth='640' d:DesignHeight='480'>
<Grid x:Name="LayoutRoot" Background="White">
<ComboBox x:Name="myComboBox" Height="28" Width="180">
<ComboBox.Items>
<ComboBoxItem><TextBlock>Sunday, June 1</TextBlock></ComboBoxItem>
<ComboBoxItem><TextBlock>Monday, June 2</TextBlock></ComboBoxItem>
<ComboBoxItem><TextBlock>Tuesday, June 3</TextBlock></ComboBoxItem>
<ComboBoxItem><TextBlock>Wednesday, June 4</TextBlock></ComboBoxItem>
<ComboBoxItem><TextBlock>Thursday, June 5</TextBlock></ComboBoxItem>
</ComboBox.Items>
</ComboBox>
</Grid>
</UserControl>
Related examples in the same category