|
<autocomplete:SfAutoComplete
x:Name="autocomplete"
AutoCompleteMode="Suggest"
DataSource="{Binding BarangayList}"
DisplayMemberPath="DESCRIPTION"
DropDownFooterViewHeight="{Binding DropDownFooterViewHeight, Mode=TwoWay}"
DropDownItemHeight="30"
HeightRequest="45"
IsDropDownOpen="{Binding IsDropDownOpen, Mode=TwoWay}"
MaximumDropDownHeight="200"
MinimumPrefixCharacters="3"
NoResultsFoundText="No Results"
SelectedValue="{Binding BARANGAY_INDEXER, Mode=TwoWay}"
SelectedValuePath="ID"
ShowSuggestionsOnFocus="true"
SuggestionMode="Contains"
Text="{Binding Text, Mode=TwoWay}">
<autocomplete:SfAutoComplete.DropDownFooterView>
<Grid
BackgroundColor="#f0f0f0"
HeightRequest="60"
VerticalOptions="StartAndExpand">
<busyindicator:SfBusyIndicator
x:Name="busyindicator"
AnimationType="SlicedCircle"
IsBusy="{Binding IsBusy, Mode=TwoWay}"
TextColor="Maroon"
VerticalOptions="Start"
ViewBoxHeight="40"
ViewBoxWidth="40" />
</Grid>
</autocomplete:SfAutoComplete.DropDownFooterView>
</autocomplete:SfAutoComplete> |