<combobox:SfComboBox
x:Name="PropiedadesCualFue"
BorderColor="Green"
ComboBoxMode="Suggest"
DataSource="{Binding Clientes, Mode=TwoWay}"
DisplayMemberPath="ClienteNombre"
DropDownFooterViewHeight="{Binding DropDownFooterViewHeight, Mode=TwoWay}"
DropDownItemHeight="30"
IsDropDownOpen="{Binding IsDropDownOpen, Mode=TwoWay}"
SelectedValue="{Binding SelectedValue, Mode=TwoWay}"
SelectedValuePath="ClienteID"
ShowSuggestionsOnFocus="True"
SuggestionMode="Contains"
Watermark="Search property"
WatermarkColor="Green">
<combobox:SfComboBox.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" />
<Button
HeightRequest="50"
Clicked="Button_Clicked"
IsVisible="{Binding IsVisible, Mode=TwoWay}"
Text="Load More" />
</Grid>
</combobox:SfComboBox.DropDownFooterView>
</combobox:SfComboBox> |
<combobox:SfComboBox
x:Name="comboBox"
DisplayMemberPath="Name"
DropDownFooterViewHeight="60"
HeightRequest="40"
NoResultsFoundText="No Results Found">
<combobox:SfComboBox.DropDownButtonSettings>
<combobox:DropDownButtonSettings>
<combobox:DropDownButtonSettings.View>
<Image HeightRequest="25" Source="down.png">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped" />
</Image.GestureRecognizers>
</Image>
</combobox:DropDownButtonSettings.View>
</combobox:DropDownButtonSettings>
</combobox:SfComboBox.DropDownButtonSettings>
<combobox:SfComboBox.DropDownFooterView>
<Grid
BackgroundColor="#f0f0f0"
HeightRequest="60"
VerticalOptions="StartAndExpand">
<busyindicator:SfBusyIndicator
x:Name="busyindicator"
AnimationType="SlicedCircle"
TextColor="Maroon"
VerticalOptions="Start"
ViewBoxHeight="40"
ViewBoxWidth="40" />
</Grid>
</combobox:SfComboBox.DropDownFooterView>
</combobox:SfComboBox> |