我有两个RootElement
元素装箱。见代码。最深的级别应该是StringElement
可点击的,允许选择当前的评论。但是,由于缺少RadioGroup
. MT.Dialog可以吗?
Root = new RootElement ("Annotations")
{
new Section ("Review")
{
// This element's caption is supposed to be whatever gets selected deep down.
new RootElement("Reviews", new RadioGroup(0))
{
new Section("My Reviews")
{
new RootElement("Local profile")
{
new Section()
{
// Tapping this element should make "Local profile selected" appear as caption of the "Reviews" RootElement.
new RadioElement("Activate", "Local profile selected")
},
...more elements...