Section 构造函数

定义

重载

Section()

构造不带页眉或页脚的节。

Section(String)

构造具有指定标头的 Section

Section(UIView)
Section(String, String)

使用页眉和页脚构造节

Section(UIView, UIView)

Section()

构造不带页眉或页脚的节。

public Section ();

适用于

Section(String)

构造具有指定标头的 Section

public Section (string caption);
new MonoTouch.Dialog.Section : string -> MonoTouch.Dialog.Section

参数

caption
String

要显示的标头

适用于

Section(UIView)

public Section (UIKit.UIView header);
new MonoTouch.Dialog.Section : UIKit.UIView -> MonoTouch.Dialog.Section

参数

header
UIView

适用于

Section(String, String)

使用页眉和页脚构造节

public Section (string caption, string footer);
new MonoTouch.Dialog.Section : string * string -> MonoTouch.Dialog.Section

参数

caption
String

要显示的标题 (或 null 表示不显示标题)

footer
String

要显示的页脚。

适用于

Section(UIView, UIView)

public Section (UIKit.UIView header, UIKit.UIView footer);
new MonoTouch.Dialog.Section : UIKit.UIView * UIKit.UIView -> MonoTouch.Dialog.Section

参数

header
UIView
footer
UIView

适用于