• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn cảnh báo alert khi nhấn nút quay lại trên Xamarin Forms

Admin

Well-Known Member
Staff member
Administrator
Chào các bạn, hôm nay tuoitreit.vn xin hướng dẫn các bạn cách tạo cảnh báo khi nhấn nút quay lại
Để tạo cảnh báo khi nhấn nút quay lại bạn sử dụng code sau nhé
Trong MainPage.xaml.cs
Code:
protected override bool OnBackButtonPressed()
        {
            Device.BeginInvokeOnMainThread(async () => {
                var result = await this.DisplayAlert("Cảnh báo", "Bạn có chắc muốn thoát", "Có", "Không");
                if (result) await this.Navigation.PopAsync();
            });
            return true;
        }
Chúc bạn thành công!
Mọi sao chép vui lòng ghi rõ nguồn tuoitreit.vn
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top