DialogViewController Constructors

Definition

Overloads

DialogViewController(RootElement)

Constructor that creates a new DialogViewController from the specified RootElement.

DialogViewController(IntPtr)
DialogViewController(RootElement, Boolean)

Creates a new DialogViewController from a RootElement and sets the push status.

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

DialogViewController(RootElement)

Constructor that creates a new DialogViewController from the specified RootElement.

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

Parameters

root
RootElement

The RootElement that contains the information to the display on the table.

Applies to

DialogViewController(IntPtr)

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

Parameters

handle
IntPtr

nativeint

Applies to

DialogViewController(RootElement, Boolean)

Creates a new DialogViewController from a RootElement and sets the push status.

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

Parameters

root
RootElement

The RootElement containing the information to render.

pushing
Boolean

A Boolean describing whether this is being pushed (NavigationControllers) or not. If pushing is true, then the back button will be shown, allowing the user to go back to the previous controller

Applies to

DialogViewController(UITableViewStyle, RootElement)

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

Parameters

Applies to

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

Parameters

pushing
Boolean

Applies to