EntryElement 构造函数

定义

重载

EntryElement(String, String, String)

使用给定的标题、占位符和初始值构造 EntryElement。

EntryElement(String, String, String, Boolean)

使用给定的标题、占位符和初始值为密码条目构造 EntryElement。

EntryElement(String, String, String)

使用给定的标题、占位符和初始值构造 EntryElement。

public EntryElement (string caption, string placeholder, string value);
new MonoTouch.Dialog.EntryElement : string * string * string -> MonoTouch.Dialog.EntryElement

参数

caption
String

要使用的标题

placeholder
String

未设置值时显示的占位符。

value
String

初始值。

适用于

EntryElement(String, String, String, Boolean)

使用给定的标题、占位符和初始值为密码条目构造 EntryElement。

public EntryElement (string caption, string placeholder, string value, bool isPassword);
new MonoTouch.Dialog.EntryElement : string * string * string * bool -> MonoTouch.Dialog.EntryElement

参数

caption
String

要使用的标题。

placeholder
String

未设置值时显示的占位符。

value
String

初始值。

isPassword
Boolean

如果应使用此密码输入密码,则为 True。

适用于