수색…


소개

이 문서에서는 Xamarin Forms ListView의 다양한 구성 요소를 사용하는 방법을 자세히 설명합니다.

XAML 및 코드 숨김에서 새로 고침

A의 새로 고침하는 풀을 사용하려면 ListView 자 마린에 먼저가되는 것을 지정해야 PullToRefresh 가능하고 당신이에 호출 할 명령의 이름을 지정 ListView 끌려을 :

<ListView x:Name="itemListView" IsPullToRefreshEnabled="True" RefreshCommand="Refresh">

뒤에있는 코드에서도 같은 결과를 얻을 수 있습니다.

itemListView.IsPullToRefreshEnabled = true;
itemListView.RefreshCommand = Refresh;

그런 다음 코드에서 Refresh Command가 수행하는 작업을 지정해야합니다.

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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow