MonoTouch.Dialog:无默认值

时间:2011-09-09 21:38:36

标签: xamarin.ios monotouch.dialog

我正在使用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”而不是空白值:

enter image description here

1 个答案:

答案 0 :(得分:2)

将空值或空值添加到列表的开头。否则,您唯一的选择是修改MT.Dialog以按照您想要的方式运行。