Method | Description | |
---|---|---|
BecomeFirstResponder ( bool animated ) : void |
Makes this cell the first responder (get the focus)
|
|
EntryElement ( string caption, string value ) : System | ||
EntryElement ( string caption, string placeholder_hint, string value ) : System |
Constructs an EntryElement with the given caption, placeholder and initial value.
|
|
EntryElement ( string caption, string placeholder, string value, bool isPassword ) : System |
Constructs an EntryElement for password entry with the given caption, placeholder and initial value.
|
|
FetchValue ( ) : void |
Copies the value from the UITextField in the EntryElement to the Value property and raises the Changed event if necessary.
|
|
GetCell ( UITableView tv ) : UITableViewCell | ||
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!
|
|
Matches ( string text ) : bool | ||
ResignFirstResponder ( bool animated ) : void | ||
Selected ( |
Method | Description | |
---|---|---|
CreateTextField ( |
||
Dispose ( bool disposing ) : void |
Method | Description | |
---|---|---|
ComputeEntryPosition ( UITableView tv, UITableViewCell cell ) : |
||
ExecutePlatformCode ( ) : void |
public BecomeFirstResponder ( bool animated ) : void | ||
animated | bool | /// Whether scrolling to the location of this cell should be animated /// |
return | void |
protected CreateTextField ( |
||
frame | ||
return | UITextField |
public EntryElement ( string caption, string value ) : System | ||
caption | string | |
value | string | |
return | System |
public EntryElement ( string caption, string placeholder_hint, string value ) : System | ||
caption | string | /// The caption to use /// |
placeholder_hint | string | |
value | string | /// Initial value. /// |
return | System |
public EntryElement ( string caption, string placeholder, string value, bool isPassword ) : System | ||
caption | string | /// The caption to use. /// |
placeholder | string | /// Placeholder to display when no value is set. /// |
value | string | /// Initial value. /// |
isPassword | bool | /// True if this should be used to enter a password. /// |
return | System |
public GetCell ( UITableView tv ) : UITableViewCell | ||
tv | UITableView | |
return | UITableViewCell |
public ResignFirstResponder ( bool animated ) : void | ||
animated | bool | |
return | void |
public Selected ( |
||
dvc | ||
tableView | UITableView | |
indexPath | NSIndexPath | |
return | void |