ComboBox in Windows Phone 8.1

Introduction

A ComboBox is very much helpful when you want to provide the ability to choose one or more items of multiple items in your application to be selected by the user.

ComboBox in Windows Phone

This article shows a very simple demo of a ComboBox control.

Step 1

To build a Windows Phone 8.1 application, ensure you have Visual Studio 2013 and the Windows Phone 8.1 SDK installed in your system.

Go to "New Project". Under "Installed" > "Templates" > "Visual C#" > "Store Apps" select "Windows Phone Apps" then select "Blank App (Windows Phone)" and provide it a name as you choose (here I am using "ComboBoxDemoWp8.1").

Creating Blank Windows Phone App

Step 2

Navigate to the "MainPage.xaml" section of the project and add a "Button" control and a "TextBlock" Control to the Show the Content of item selected from ComboBox.

Finally add a "ComboBox" Control to your project.

  1. <Grid>  
  2.         <Button x:Name="ResultButton" Content="Show Result" FontSize="36" HorizontalAlignment="Left" Height="100"   
  3. Margin="37,478,0,0" VerticalAlignment="Top" Width="326" Click="ResultButton_Click"/>  
  4.    
  5.         <TextBlock x:Name="ResultTextBlock" HorizontalAlignment="Left" Height="65" Margin="37,264,0,0" TextWrapping="Wrap"   
  6. Text="" FontSize="36" VerticalAlignment="Top" Width="326"/>  
  7.    
  8.         <ComboBox x:Name="ComboBoxMenu" HorizontalAlignment="Left" Height="71"   
  9.                   Margin="37,70,0,0" VerticalAlignment="Top"   
  10.                   Width="326">  
  11.             <ComboBoxItem Content="First Item" IsSelected="True"/>  
  12.             <ComboBoxItem Content="Second Item"/>  
  13.             <ComboBoxItem Content="Third Item" />  
  14.             <ComboBoxItem Content="Fourth Item"/>  
  15.             <ComboBoxItem Content="Fifth Item"/>  
  16.             <ComboBoxItem Content="Sixth Item"/>  
  17.         </ComboBox>  
  18. </Grid> 
Here ComboBoxItem is the children of ComboBox used to add the Items inside the ComboBox. Also the "IsSelected" property can be used in any of the items to which we wanted to be selected initially. By default it's value is "false" for all the ComboBoxItems.

Your MainPage will look like this:

Main Page of Windows Phone

Step 3

Now it's time to add some C# code to the project. Navigate to the "Button" Event Handler in your project and add the following line of code:

  1. private void ResultButton_Click(object sender, RoutedEventArgs e)  
  2. {  
  3.     //Showing the Selected Item of ComboBox in a TextBlock  
  4.     //Firstly the Selected Item is fetched  
  5.     //then it is Type Casted to ComboBoxItem  
  6.     //after that Content of the Selected item is fetched   
  7.     //by using the Content Property of the ComboBox   
  8.     //and then ToString() method is used to return a String  
  9.     ResultTextBlock.Text = ((ComboBoxItem)ComboBoxMenu.SelectedItem).Content.ToString();  

That's it; just compile and run your project.

Initially when the application launches it may be like this:

Accessing ComboBox in Windows Phone

Now when you select the ComboBox a flyout window will appear like this:

Flyout in ComboBox

After selecting any of the items, the content of the item will be reflected in the TextBlock like this:

Selection in ComboBox

That's it for the article. If you have any query then feel fee to ask.

In the future articles we will see some of the more cool features and controls of Windows Phone 8.1.

Up Next
    Ebook Download
    View all
    Learn
    View all