我正在尝试使用Elements列表创建SwitchCell。 虽然我发现如何使用普通的字符串来实现这一点 - 感谢stackoverflow但是当我尝试将Cell-Properties绑定到一个自制的结构时,我无法找出我做错了什么。 / p>
这是我的代码:
public class RestaurantFilter
{
public List<FilterElement> Types;
public RestaurantFilter(List<string> types)
{
Types = new List<FilterElement>();
foreach (string type in types)
Types.Add(new FilterElement { Name = type, Enabled = false });
}
}
public struct FilterElement
{
public string Name;
public bool Enabled;
}
public FilterPage()
{
List<string> l = new List<string>(new string[] { "greek", "italian", "bavarian" });
RestaurantFilter filter = new RestaurantFilter(l);
ListView types = new ListView();
types.ItemTemplate = new DataTemplate(() =>
{
var cell = new SwitchCell();
cell.SetBinding(SwitchCell.TextProperty, "Name");
cell.SetBinding(SwitchCell.IsEnabledProperty, "Enabled");
return cell;
});
types.ItemsSource = filter.Types;
Content = types;
}
但应用程序中的SwitchCell不显示名称或布尔值。
答案 0 :(得分:3)
关于IsEnabledProperty - 似乎有一个关于IsEnabled属性的knonw错误将在Xamarin.Forms 2.3.0-pre1版本中得到修复,因此可能与您的情况有关:
https://bugzilla.xamarin.com/show_bug.cgi?id=25662
关于Name属性 - 尝试将FilterElement结构更改为具有属性和类PropertyChangedEventHandler的类,它将起作用:
public class FilterElement
{
public event PropertyChangedEventHandler PropertyChanged;
private string _name;
public string Name
{
get { return _name; }
set
{
_name = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs("Name"));
}
}
}
private bool _enabled;
public bool Enabled
{
get { return _enabled; }
set
{
_enabled = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs("Enabled"));
}
}
}
}
这样您就可以更新“类型”列表,它将自动更新ListView。
顺便说一下,如果你想根据你的ViewModel开启或关闭过滤器(不启用或禁用它),你需要使用OnProperty进行绑定:
https://developer.xamarin.com/api/field/Xamarin.Forms.SwitchCell.OnProperty/