gpt4 book ai didi

c# - 将背景图像添加到 monotouch.dialog View

转载 作者:可可西里 更新时间:2023-11-01 05:38:25 25 4
gpt4 key购买 nike

我正在尝试使用 MonoTouch 和 MonoTouch.Dialog 构建应用。

我非常喜欢 dropbox 设计其欢迎 View 的方式。当应用程序第一次打开时,您会看到类似这样的屏幕

enter image description here

它类似于我需要做的。我首先需要检查我的用户是该产品的新用户还是已有帐户。

他们的欢迎屏幕在我看来就像一个导航 Controller (如果我错了请原谅)

我希望能够将我的企业 Logo 添加到类似于保管箱的 View 中,并在 View 底部添加导航按钮

MonoTouch.Dialog 可以做这样的事情吗?

最佳答案

一般情况下,复杂的背景 View 应该通过添加一个 UIImageVIew 作为 subview 来设置。否则,对于 Dropbox,他们使用的是重复图案图像:

public class MyDialogViewController : DialogViewController {

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

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

关于c# - 将背景图像添加到 monotouch.dialog View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9505928/

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