A ComboBox that has been used to select an item : ComboBox « UI Controls « Silverlight

Home
Silverlight
1.Animations
2.Communication
3.Containers
4.Data
5.Events
6.Graphics
7.Shapes
8.UI Controls
Silverlight » UI Controls » ComboBoxScreenshots 
A ComboBox that has been used to select an item
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
1.Content in ComboBox Items
2.Set Different Font for Item for ComboBox
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.