Xamarin TableViewCell选择一个

时间:2013-04-01 19:08:16

标签: xamarin.ios xamarin radio-group xamarin-studio

我正在尝试使用Xamarin Studio创建表视图单元格。

enter image description here

公共枚举类别
{
    旅游,
    宾馆,旅店,
    书籍
}

我正在使用Monotouch.Dialog,但找不到任何元素。 有什么建议吗?

1 个答案:

答案 0 :(得分:1)

我猜你正在寻找的是MonoTouch.Dialog的RadioElement。您可以在MonoTouch.Dialog introduction中的3.1节中看到一个示例。

来自doc:

中的示例
var root = new RootElement ("Meals") {
    new Section ("Dinner"){
        new RootElement ("Dessert", new RadioGroup ("dessert", 2)) {
            new Section () {
                new RadioElement ("Ice Cream", "dessert"),
                new RadioElement ("Milkshake", "dessert"),
                new RadioElement ("Chocolate Cake", "dessert")
            }
        }
     }
}

通过此示例,您将拥有一个名为Meals的根元素的对话框。点击此项目时,您将看到一个新对话框,您可以在其中选择一个RadioElements。您为属于一起的元素创建RadioGroup,并且RootElement从中启动RadioGroup将显示当前选定的值。有关此内容的更多信息,请参见第4.8节。也提供了链接。