Xamarin.Forms
Utilisation de ListViews
Recherche…
Introduction
Cette documentation explique comment utiliser les différents composants de Xamarin Forms ListView
Tirez pour actualiser dans XAML et code derrière
Pour activer l'option Pull to Refresh dans ListView
dans Xamarin, vous devez d'abord spécifier qu'il s'agit de PullToRefresh
activé, puis spécifier le nom de la commande à appeler lors de l' ListView
:
<ListView x:Name="itemListView" IsPullToRefreshEnabled="True" RefreshCommand="Refresh">
La même chose peut être obtenue dans le code derrière:
itemListView.IsPullToRefreshEnabled = true;
itemListView.RefreshCommand = Refresh;
Ensuite, vous devez spécifier ce que la commande d' Refresh
fait dans votre code derrière:
public ICommand Refresh
{
get
{
itemListView.IsRefreshing = true; //This turns on the activity
//Indicator for the ListView
//Then add your code to execute when the ListView is pulled
itemListView.IsRefreshing = false;
}
}
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow