Page.DisplayAlert 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DisplayAlert(String, String, String, String, FlowDirection) |
使用单个取消按钮向应用程序用户显示警报对话框。 |
DisplayAlert(String, String, String, String) |
使用单个取消按钮向应用程序用户显示警报对话框。 |
DisplayAlert(String, String, String) |
使用单个取消按钮向应用程序用户显示警报对话框。 |
DisplayAlert(String, String, String, FlowDirection) |
使用单个取消按钮向应用程序用户显示警报对话框。 |
DisplayAlert(String, String, String, String, FlowDirection)
- Source:
- Page.cs
- Source:
- Page.cs
使用单个取消按钮向应用程序用户显示警报对话框。
public:
System::Threading::Tasks::Task<bool> ^ DisplayAlert(System::String ^ title, System::String ^ message, System::String ^ accept, System::String ^ cancel, Microsoft::Maui::FlowDirection flowDirection);
public System.Threading.Tasks.Task<bool> DisplayAlert (string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection);
member this.DisplayAlert : string * string * string * string * Microsoft.Maui.FlowDirection -> System.Threading.Tasks.Task<bool>
Public Function DisplayAlert (title As String, message As String, accept As String, cancel As String, flowDirection As FlowDirection) As Task(Of Boolean)
参数
- title
- String
警报对话框的标题。 可以 null
隐藏标题。
- message
- String
警报对话框的正文文本。
- accept
- String
要显示在“接受”按钮上的文本。 可以 null
隐藏此按钮。
- cancel
- String
要显示在“取消”按钮上的文本。
- flowDirection
- FlowDirection
警报要使用的流方向。
返回
一个 Task 包含用户选择的值 Boolean 。 true
指示用户接受了警报。 false
指示用户取消了警报。
例外
当 cancel
为 null
或为空时引发。
适用于
DisplayAlert(String, String, String, String)
- Source:
- Page.cs
- Source:
- Page.cs
使用单个取消按钮向应用程序用户显示警报对话框。
public:
System::Threading::Tasks::Task<bool> ^ DisplayAlert(System::String ^ title, System::String ^ message, System::String ^ accept, System::String ^ cancel);
public System.Threading.Tasks.Task<bool> DisplayAlert (string title, string message, string accept, string cancel);
member this.DisplayAlert : string * string * string * string -> System.Threading.Tasks.Task<bool>
Public Function DisplayAlert (title As String, message As String, accept As String, cancel As String) As Task(Of Boolean)
参数
- title
- String
警报对话框的标题。 可以 null
隐藏标题。
- message
- String
警报对话框的正文文本。
- accept
- String
要显示在“接受”按钮上的文本。 可以 null
隐藏此按钮。
- cancel
- String
要显示在“取消”按钮上的文本。
返回
一个 Task 包含用户选择的值 Boolean 。 true
指示用户接受了警报。 false
指示用户取消了警报。
适用于
DisplayAlert(String, String, String)
- Source:
- Page.cs
- Source:
- Page.cs
使用单个取消按钮向应用程序用户显示警报对话框。
public:
System::Threading::Tasks::Task ^ DisplayAlert(System::String ^ title, System::String ^ message, System::String ^ cancel);
public System.Threading.Tasks.Task DisplayAlert (string title, string message, string cancel);
member this.DisplayAlert : string * string * string -> System.Threading.Tasks.Task
Public Function DisplayAlert (title As String, message As String, cancel As String) As Task
参数
- title
- String
警报对话框的标题。 可以 null
隐藏标题。
- message
- String
警报对话框的正文文本。
- cancel
- String
要显示在“取消”按钮上的文本。
返回
一个 Task 包含用户选择的值 Boolean 。 true
指示用户接受了警报。 false
指示用户取消了警报。
适用于
DisplayAlert(String, String, String, FlowDirection)
- Source:
- Page.cs
- Source:
- Page.cs
使用单个取消按钮向应用程序用户显示警报对话框。
public:
System::Threading::Tasks::Task ^ DisplayAlert(System::String ^ title, System::String ^ message, System::String ^ cancel, Microsoft::Maui::FlowDirection flowDirection);
public System.Threading.Tasks.Task DisplayAlert (string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection);
member this.DisplayAlert : string * string * string * Microsoft.Maui.FlowDirection -> System.Threading.Tasks.Task
Public Function DisplayAlert (title As String, message As String, cancel As String, flowDirection As FlowDirection) As Task
参数
- title
- String
警报对话框的标题。 可以 null
隐藏标题。
- message
- String
警报对话框的正文文本。
- cancel
- String
要显示在“取消”按钮上的文本。
- flowDirection
- FlowDirection
警报要使用的流方向。
返回
一个 Task 包含用户选择的值 Boolean 。 true
指示用户接受了警报。 false
指示用户取消了警报。