如何使用Monotouch.Dialog设置背景图像

时间:2011-12-09 04:34:15

标签: c# ios xamarin.ios monotouch.dialog

Monotouch.Dialog中设置背景图片(在所有控件下方)的最佳方法是什么?我使用Elements的{​​{1}} API。

1 个答案:

答案 0 :(得分:3)

技巧是将TableView背景颜色设置为Clear,然后将ParentViewController.View设置为您的图片,例如:

class MyDialogViewController : DialogViewController {

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

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