我正在使用BindingContext
生成表格,并且不希望选择默认值。
我的班级有这个领域:
[RadioSelection ("Model:")]
public int model = -1;
public IList<string> Model;
然后将其添加到Root:
car = new AddCar () {
Model = new List<string>(){"ES 250","ES 300","ES 330","ES 350"}
};
bc = new BindingContext (this, car, "Add Your Vehicle");
this.Root = bc.Root;
然而,UI会呈现选定的值“ES 250”而不是空白值:
答案 0 :(得分:2)
将空值或空值添加到列表的开头。否则,您唯一的选择是修改MT.Dialog以按照您想要的方式运行。