DisplayAlert 仅在 Xamarin 表单 ios 上不显示
Posted
技术标签:
【中文标题】DisplayAlert 仅在 Xamarin 表单 ios 上不显示【英文标题】:DisplayAlert not showing on Xamarin forms ios only 【发布时间】:2017-06-26 04:22:58 【问题描述】:由于某种原因,当我仅在 ios 上从一个页面导航到另一个页面时,显示警报没有显示。它虽然适用于android。这是简单的代码
//Navigating to other page
Navigation.PushAsync(new page1());
//Page1 Code
public page1()
InitializeComponent();
DisplayAlert("Test", "Test Successful", "Ok");
【问题讨论】:
【参考方案1】:像下面这样尝试它会为你工作
Device.BeginInvokeOnMainThread (() =>
DisplayAlert("Test", "Test Successful", "Ok");
);
http://developer.xamarin.com/guides/cross-platform/xamarin-forms/working-with/pop-ups/
【讨论】:
【参考方案2】:另一个变体 - 从当前 MainPage 调用 DisplayAlert。
await Application.Current.MainPage.DisplayAlert("Test", "Test Successful", "Ок");
【讨论】:
以上是关于DisplayAlert 仅在 Xamarin 表单 ios 上不显示的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin 窗体 DisplayAlert 按钮 TextColor
当我在 Xamarin 应用程序中调用 DisplayAlert 时,屏幕变暗但不显示警报