gpt4 book ai didi

c# - 如何在 Monodroid 中显示 MessageBox

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:56:13 33 4
gpt4 key购买 nike

如何在 Xamarin.Android 中显示消息框?如何从消息框中获得是或否的响应?

--- 更新:

myBtn.Click += (sender, e) => 
{
new AlertDialog.Builder(this)
.SetMessage("hi")
.Show();
};

最佳答案

您可以在 Activity 中使用 AlertDialog.Buider 类。

new AlertDialog.Builder(this)
.SetPositiveButton("Yes", (sender, args) =>
{
// User pressed yes
})
.SetNegativeButton("No", (sender, args) =>
{
// User pressed no
})
.SetMessage("An error happened!")
.SetTitle("Error")
.Show();

关于c# - 如何在 Monodroid 中显示 MessageBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16660632/

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