Getting Started with UWP AutoComplete (SfTextBoxExt)
23 Jun 20231 minute to read
Namespace: Syncfusion.UI.Xaml.Controls.Input
Assembly: Syncfusion.SfInput.UWP
Dependent assembly: Syncfusion.SfShared.UWP
The following code sample shows how to create the SfTextBoxExt from code-behind and XAML:
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:editors="using:Syncfusion.UI.Xaml.Controls.Input" >
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<editors:SfTextBoxExt HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="200"
Text="Hello! World..."/>
</Grid>
</Page>
SfTextBoxExt textBox = new SfTextBoxExt();
Dim textBox As New SfTextBoxExt()
NOTE
You can refer to our UWP AutoComplete feature tour page to know about its other groundbreaking feature representations. You can also explore our UWP AutoComplete example that shows you how to render and configure the Autocomplete in UWP.