AutoSuggestBox Control For Windows 10

Introduction 

 
AutoSuggestBox represents a text control that makes suggestions to users as they type. The app is notified when the text has been changed by the user and is responsible for providing relevant suggestions for this control to display.
 
Step 1
 
Open a blank app and add AutoSuggestBox control either from the toolbox or by copying the following XAML code into your grid. 
  1. <TextBlock Text="Auto Suggest Box" FontSize="20"/>    
  2.    <StackPanel>    
  3.       <StackPanel Margin="10,40,0,0" Orientation="Horizontal">    
  4.          <TextBlock Text="Auto Suggest Box" VerticalAlignment="Center"></TextBlock>    
  5.          <AutoSuggestBox Name="myAutoSuggestBox" QueryIcon="Find" PlaceholderText="search here" Margin="10,0,0,0" Width="200" TextChanged            ="myAutoSuggestBox_TextChanged"></AutoSuggestBox>    
  6.       </StackPane>    
  7. </StackPanel>     
The Query Icon defines the icon to be shown in the right side of the box and PlaceholderText defines the text to be shown inside the box.
 
 
 
Step 2
 
Before running the application we have to predefine some words from which the suggestion should pop up according to the user input. For that, we have to define an array of strings in the class. Here I am using the months of a year as a sample. Copy the following code to your class on the cs page.  
  1. private string[] boxitems = new string[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" };     
Step 3
 
Copy and paste the following code to the myAutoSuggestBox_TextChanged event on the cs page and run your application.
  1. var autoSuggestBox = (AutoSuggestBox)sender;    
  2. var filtered = boxitems.Where(p => p.StartsWith(autoSuggestBox.Text, StringComparison.OrdinalIgnoreCase)).ToArray();    
  3. autoSuggestBox.ItemsSource = filtered;  
 
 

Summary 

 
In this article, we learned about AutoSuggestBox Control For Windows 10.  


Similar Articles