DialogViewController 构造函数

定义

重载

DialogViewController(RootElement)

从指定的 RootElement 创建新的 DialogViewController 的构造函数。

DialogViewController(IntPtr)
DialogViewController(RootElement, Boolean)

从 RootElement 创建新的 DialogViewController 并设置推送状态。

DialogViewController(UITableViewStyle, RootElement)
DialogViewController(UITableViewStyle, RootElement, Boolean)

DialogViewController(RootElement)

从指定的 RootElement 创建新的 DialogViewController 的构造函数。

public DialogViewController (MonoTouch.Dialog.RootElement root);
new MonoTouch.Dialog.DialogViewController : MonoTouch.Dialog.RootElement -> MonoTouch.Dialog.DialogViewController

参数

root
RootElement

包含表上显示的信息的 RootElement。

适用于

DialogViewController(IntPtr)

public DialogViewController (IntPtr handle);
new MonoTouch.Dialog.DialogViewController : nativeint -> MonoTouch.Dialog.DialogViewController

参数

handle
IntPtr

nativeint

适用于

DialogViewController(RootElement, Boolean)

从 RootElement 创建新的 DialogViewController 并设置推送状态。

public DialogViewController (MonoTouch.Dialog.RootElement root, bool pushing);
new MonoTouch.Dialog.DialogViewController : MonoTouch.Dialog.RootElement * bool -> MonoTouch.Dialog.DialogViewController

参数

root
RootElement

包含 RootElement 要呈现的信息的 。

pushing
Boolean

描述 Boolean 是否 (NavigationControllers) 推送此内容。 如果推送为 true,则会显示后退按钮,允许用户返回到上一个控制器

适用于

DialogViewController(UITableViewStyle, RootElement)

public DialogViewController (UIKit.UITableViewStyle style, MonoTouch.Dialog.RootElement root);
new MonoTouch.Dialog.DialogViewController : UIKit.UITableViewStyle * MonoTouch.Dialog.RootElement -> MonoTouch.Dialog.DialogViewController

参数

适用于

DialogViewController(UITableViewStyle, RootElement, Boolean)

public DialogViewController (UIKit.UITableViewStyle style, MonoTouch.Dialog.RootElement root, bool pushing);
new MonoTouch.Dialog.DialogViewController : UIKit.UITableViewStyle * MonoTouch.Dialog.RootElement * bool -> MonoTouch.Dialog.DialogViewController

参数

pushing
Boolean

适用于