XF警告试图

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;

namespace App24
{
    public partial class MainPage : ContentPage
    {
        public MainPage()
        {
            InitializeComponent();
        }

        async void Button_Clicked(object sender, EventArgs e)
        {
            //DisplayAlert("警告", "电量不足了", "知道了");
            var alert = await DisplayAlert("警告", "是否更改颜色", "yes","no");
            if (alert.ToString()=="True")
            {
                this.BackgroundColor = Color.Red;
            }
        }
    }
}
 

原文地址:https://www.cnblogs.com/dxmfans/p/9434575.html