在Monotouch.Dialog
中设置背景图片(在所有控件下方)的最佳方法是什么?我使用Elements
的{{1}} API。
答案 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);
}
}