其他分享
首页 > 其他分享> > CodeGo.net>如何使用Monotouch.Dialog设置背景图像

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

作者:互联网

在Monotouch.Dialog中设置背景图像(在所有控件下方)的最佳方法是什么?我正在使用Monotouch.Dialog的Elements API.

解决方法:

主要技巧是将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);
    }
}

标签:monotouch-dialog,xamarin-ios,ios,c
来源: https://codeday.me/bug/20191202/2085053.html