gpt4 book ai didi

c# - 如何将 UIImageView 添加到 xamarin.forms 中的 UIAlertView?

转载 作者:太空宇宙 更新时间:2023-11-03 15:40:46 25 4
gpt4 key购买 nike

UIAlertView alert = new UIAlertView () { 
Title = alertTitle, Message = alertMessage
};

UIImageView imageview = new UIImageView ();
UIImage img = UIImage.FromFile ("Resources/Default.png");
imageview.Image = img;
alert.AddSubview (imageview);

alert.AddButton (alertPositiveBtnText);
alert.AddButton (alertNegativeBtnText);
alert.Show ();

这是我正在处理的代码。我想在警报框中显示图像作为背景。我已经设置了UIImageViewUIAlertView 但图像不是出现了。帮帮我?

最佳答案

Guilherme Torres Castro 是正确的。版本 7 及更高版本不支持将 UIImageView 添加为 subview 。但是,对于版本 7 及更高版本,您可以使用:

 UIAlertView Msg = new UIAlertView()
{
Title = "Title",
Message = "Content"
};
UIImageView uiIV = new UIImageView(UIImage.FromFile("ImgFile.Png"));
Msg.SetValueForKey(uiIV, (NSString)"accessoryView");
Msg.AddButton("OK");
Msg.Show();

关于c# - 如何将 UIImageView 添加到 xamarin.forms 中的 UIAlertView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30344452/

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