3

我可能在这里遗漏了一些东西,但是这段代码:

this.oSectionDRs = new Section()
{
    new ActivityElement()
    {
        Caption = Locale.GetLocale("Settings_Loading"), 
        Animating = true
    }
};

// To begin with just show a loading indicator.
this.Root = new RootElement (Locale.GetLocale("Settings_Select"))
{
    this.oSectionDRs
};

不显示任何动画的东西。它只显示标签。如何获得动画明星?

4

1 回答 1

0

使用此代码:

var root = new RootElement("foo");
      root.Add (new Section("foo", "bar") {
      new ActivityElement()
      {
        Caption = "foo",
        Animating = true
      }
    });

    var dvc = new DialogViewController(root, false);


    window.RootViewController = dvc;

我得到了标题和活动滚动条的东西。不确定它对你有帮助!我只是在使用内置的 MT.D。

于 2012-08-13T20:01:07.973 回答