2 つのRootElement
要素がボックス化されています。コードを参照してください。StringElement
最も深いレベルには、現在のレビューを選択できるタップ可能があるはずです。ただし、 が見つからないため、NULL 参照エラーが発生します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...