1

为什么不能MonoTouch.Dialog.TableView.Background变色?我正在使用 MonoTouch.Dialog 的 Elements API。还是灰色的!

class MyDialogViewController : DialogViewController {

public MyDialogViewController (RootElement root) : base (root)
{
}

public override void LoadView ()
{
    base.LoadView ();
    TableView.BackgroundColor = UIColor.Clear;
    UIImage background = UIImage.FromFile ("Mybackground.png");
    ParentViewController.View.BackgroundColor = UIColor.FromPatternImage (background);
}
}


public partial class MyVC: UINavigationController
{
    public void CreateTestUI()
    {

            var menu = new RootElement("MyMenu"){
            new Section ("test"){
                new StringElement("Test", delegate() { }), ...

        var dv = new MyDialogViewController (menu) {
            Autorotate = true
        };

        // add the nav controller to the window
        this.PushViewController (dv, true); 
      }
  }
4

1 回答 1

6

在 iPad 中,必须添加这一行:TableView.BackgroundView = null;

现在它运作良好,感谢 poupou,感谢所有人。

   public override void LoadView()
   {
        base.LoadView();
        TableView.BackgroundView = null;
        TableView.BackgroundColor = UIColor.Black;
   }
于 2012-08-29T09:37:40.937 回答