共用方式為


Section 建構函式

定義

多載

Section()

建構不含頁首或頁尾的區段。

Section(String)

建構具有指定標頭的區段

Section(UIView)
Section(String, String)

建構頁首和頁尾的區段

Section(UIView, UIView)

Section()

建構不含頁首或頁尾的區段。

public Section ();

適用於

Section(String)

建構具有指定標頭的區段

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

適用於