1

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...
4

1 に答える 1

3

次のように、ラジオ グループを指定します。

new RootElement ("Local Profile", new RadioGroup (0)) {
    ....
}
于 2012-07-19T13:35:47.170 に答える