在MonoTouch.Dialog中选择整数的元素

时间:2013-05-13 14:14:15

标签: xamarin.ios xamarin monotouch.dialog

我有一个使用MonoTouch.Dialog Reflection API的应用程序,我有一个带有几个int属性的视图模型。不幸的是,MonoTouch.Dialog似乎没有任何支持整数类型的元素。我希望它是一个显示带有一系列数字的UIPicker的简单元素。我知道monotouch-element-pack中有一个CounterElement,但似乎不可能将它与Reflection API一起使用。所以问题是:

  • 是否存在符合这些要求的元素?

或者如果不是

  • 是否可以使用自定义元素的自定义属性扩展Reflection API?
  • 可以结合Reflection API和Element API吗?

1 个答案:

答案 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")
                }
            }
        }
    }