Xamarin.Forms
ListViews का उपयोग करना
खोज…
परिचय
यह दस्तावेज़ीकरण ज़ामरीन फॉर्म लिस्ट व्यू के विभिन्न घटकों का उपयोग करने का विवरण देता है
XAML में रीफ़्रेश करने के लिए खींचें और पीछे कोड
Xamarin में एक ListView
में ताज़ा करने के लिए पुल को सक्षम करने के लिए, आपको पहले यह निर्दिष्ट करने की आवश्यकता है कि यह PullToRefresh
सक्षम है और फिर उस सूची का नाम निर्दिष्ट करें जिसे आप ListView
पर खींचे जाने के लिए आमंत्रित करना चाहते हैं:
<ListView x:Name="itemListView" IsPullToRefreshEnabled="True" RefreshCommand="Refresh">
उसी को पीछे के कोड में प्राप्त किया जा सकता है:
itemListView.IsPullToRefreshEnabled = true;
itemListView.RefreshCommand = Refresh;
फिर, आपको यह निर्दिष्ट करना होगा कि आपके कोड में Refresh
आदेश क्या करता है:
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