【发布时间】:2015-07-24 02:55:53
【问题描述】:
考虑到下面的代码 (Xamarin - c#),您将如何检索 RadioGroup 的选定值?
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")
}
}
}
}
谢谢
【问题讨论】:
标签: c# xamarin xamarin.ios monotouch.dialog