标签: c# data-binding xamarin.forms
我有一个属性
public List<WebApi.UserChatRto> Chats { get; set; }
我绑定到ListView
<ListView ItemsSource="{Binding Chats}">
有效。现在,如果我将属性声明更改为
public List<WebApi.UserChatRto> Chats;
列表视图将为空。 为什么呢?
答案 0 :(得分:2)
绑定仅适用于属性,而不适用于字段。
参考 https://developer.xamarin.com/guides/xamarin-forms/xaml/xaml-basics/data_binding_basics/