Page.DisplayPromptAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
向应用程序用户显示一个提示对话框,目的是捕获单个字符串值。
public System.Threading.Tasks.Task<string> DisplayPromptAsync (string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = default, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = default, string initialValue = "");
member this.DisplayPromptAsync : string * string * string * string * string * int * Microsoft.Maui.Keyboard * string -> System.Threading.Tasks.Task<string>
Public Function DisplayPromptAsync (title As String, message As String, Optional accept As String = "OK", Optional cancel As String = "Cancel", Optional placeholder As String = Nothing, Optional maxLength As Integer = -1, Optional keyboard As Keyboard = Nothing, Optional initialValue As String = "") As Task(Of String)
参数
- title
- String
提示对话框的标题。
- message
- String
提示对话框的正文文本。
- accept
- String
要显示在“接受”按钮上的文本。
- cancel
- String
要显示在“取消”按钮上的文本。
- placeholder
- String
提示中显示的占位符文本。 当不需要占位符时,可以是 null
。
- maxLength
- Int32
用户响应的最大长度。
- keyboard
- Keyboard
用于用户响应的键盘类型。
- initialValue
- String
将显示的预定义响应,可由用户编辑。
返回
一个 Task ,它显示提示并返回用户输入的字符串值。