gpt4 book ai didi

c# - 如何使用 Monotouch.Dialog 设置背景图片

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:08:45 25 4
gpt4 key购买 nike

Monotouch.Dialog 中设置背景图像(在所有控件下方)的最佳方法是什么?我正在使用 Monotouch.DialogElements 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);
}
}

关于c# - 如何使用 Monotouch.Dialog 设置背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8441114/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com