我有一个使用MonoTouch.Dialog Reflection API的应用程序,我有一个带有几个int
属性的视图模型。不幸的是,MonoTouch.Dialog似乎没有任何支持整数类型的元素。我希望它是一个显示带有一系列数字的UIPicker
的简单元素。我知道monotouch-element-pack中有一个CounterElement
,但似乎不可能将它与Reflection API一起使用。所以问题是:
或者如果不是
答案 0 :(得分:1)
为什么不将RadioElement与有效整数列表一起使用?
var root = new RootElement ("Test") {
new Section ("Count"){
new RootElement ("Attendance", new RadioGroup ("Group", 2) {
new Section () {
new RadioElement ("1", "1"),
new RadioElement ("2", "2"),
new RadioElement ("3", "3")
}
}
}
}