Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software.
Try it for free.
<autoComplete:SfAutoComplete
x:Name="autoComplete"
………
FilteredItems="{Binding FilteredCollection, Mode=TwoWay}"
DataSource="{Binding EmployeeCollection}" /> <ListView Grid.Row="1" x:Name="listView"
ItemsSource="{Binding FilteredCollection}">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Label Text="{Binding}"
VerticalOptions="Center"
Margin="10,0,0,0"
FontSize="15"
FontAttributes="Bold" />
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView> |