2017-02-03 41 views
0

我使用Xamarin.Forms的背後,我想補充headerlistView已經創建於後面的代碼,我想在列表中添加行(用戶)數作爲header我怎麼能做到這一點, 檢查下面的代碼爲我ListViewXamarin窗體如何在代碼添加標題爲ListView控件

UsersListView = new ListView() 
      { 
       HorizontalOptions = LayoutOptions.FillAndExpand, 
       VerticalOptions = LayoutOptions.FillAndExpand, 
       HasUnevenRows = true, 
       ItemsSource = Users //Users is List<string>()   
      }; 

回答

1

列表視圖具有您可以設置頁眉屬性。 https://developer.xamarin.com/guides/xamarin-forms/user-interface/listview/customizing-list-appearance/#Headers_and_Footers作爲文本或headertemplate。

您需要做的只是監視用戶列表中的更改並將Users.Count放在標題屬性中。

+0

請您將代碼添加到更清楚地回答, –

+0

我添加標題=「測試」,並沒有出現 –

+0

我相信這是解決方案,但標題不會出現在我的情況 –

相關問題