C# 클래스 MonoMobile.Dialog.Element

상속: System.Windows.Controls.StackPanel
파일 보기 프로젝트 열기: moljac/MonoMobile.Dialog 1 사용 예제들

공개 메소드들

메소드 설명
Deselected ( DialogViewController dvc, UITableView tableView, NSIndexPath path ) : void

Invoked when the given element has been deslected by the user.

Dispose ( ) : void
Element ( ) : System
Element ( string caption ) : System

Initializes the fe with the given caption.

GetActiveCell ( ) : UITableViewCell

Returns the currently active UITableViewCell for this element, or null if the element is not currently visible

GetCell ( UITableView tv ) : UITableViewCell

Gets a UITableViewCell for this element. Can be overridden, but if you customize the style or contents of the cell you must also override the CellKey property in your derived class.

GetContainerTableView ( ) : UITableView

Returns the UITableView associated with this element, or null if this cell is not currently attached to a UITableView

GetControl ( ) : FrameworkElement

MT.D: public override UITableViewCell GetCell(UITableView tv) MA.D: public override View GetView(Context context, View convertView, ViewGroup parent) WP.D: Brainstorming needed! Control NOGO FrameworkElement GO! TODO: see more!

GetImmediateRootElement ( ) : RootElement

If the cell is attached will return the immediate RootElement

Matches ( string text ) : bool

Method invoked to determine if the cell matches the given text, never invoked with a null value or an empty string.

Selected ( DialogViewController dvc, UITableView tableView, NSIndexPath path ) : void

Invoked when the given element has been selected by the user.

Summary ( ) : string

Returns a summary of the value represented by this object, suitable for rendering as the result of a RootElement with child objects.

ToString ( ) : string
Traverse ( Element e ) : void

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void
RemoveTag ( UITableViewCell cell, int tag ) : void

메소드 상세

Deselected() 공개 메소드

Invoked when the given element has been deslected by the user.
public Deselected ( DialogViewController dvc, UITableView tableView, NSIndexPath path ) : void
dvc DialogViewController /// The where the deselection took place ///
tableView UITableView /// The that contains the element. ///
path NSIndexPath /// The that contains the Section and Row for the element. ///
리턴 void

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Element() 공개 메소드

public Element ( ) : System
리턴 System

Element() 공개 메소드

Initializes the fe with the given caption.
public Element ( string caption ) : System
caption string /// The caption. ///
리턴 System

GetActiveCell() 공개 메소드

Returns the currently active UITableViewCell for this element, or null if the element is not currently visible
public GetActiveCell ( ) : UITableViewCell
리턴 UITableViewCell

GetCell() 공개 메소드

Gets a UITableViewCell for this element. Can be overridden, but if you customize the style or contents of the cell you must also override the CellKey property in your derived class.
public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
리턴 UITableViewCell

GetContainerTableView() 공개 메소드

Returns the UITableView associated with this element, or null if this cell is not currently attached to a UITableView
public GetContainerTableView ( ) : UITableView
리턴 UITableView

GetControl() 공개 메소드

MT.D: public override UITableViewCell GetCell(UITableView tv) MA.D: public override View GetView(Context context, View convertView, ViewGroup parent) WP.D: Brainstorming needed! Control NOGO FrameworkElement GO! TODO: see more!
public GetControl ( ) : FrameworkElement
리턴 System.Windows.FrameworkElement

GetImmediateRootElement() 공개 메소드

If the cell is attached will return the immediate RootElement
public GetImmediateRootElement ( ) : RootElement
리턴 RootElement

Matches() 공개 메소드

Method invoked to determine if the cell matches the given text, never invoked with a null value or an empty string.
public Matches ( string text ) : bool
text string
리턴 bool

RemoveTag() 정적인 보호된 메소드

static protected RemoveTag ( UITableViewCell cell, int tag ) : void
cell UITableViewCell
tag int
리턴 void

Selected() 공개 메소드

Invoked when the given element has been selected by the user.
public Selected ( DialogViewController dvc, UITableView tableView, NSIndexPath path ) : void
dvc DialogViewController /// The where the selection took place ///
tableView UITableView /// The that contains the element. ///
path NSIndexPath /// The that contains the Section and Row for the element. ///
리턴 void

Summary() 공개 메소드

Returns a summary of the value represented by this object, suitable for rendering as the result of a RootElement with child objects.
public Summary ( ) : string
리턴 string

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

Traverse() 공개 메소드

public Traverse ( Element e ) : void
e Element
리턴 void