Dialog.EntryAttribute Class
Apply this attribute to strings to produce an editing row.

See Also: EntryAttribute Members

Syntax

[System.AttributeUsage(System.AttributeTargets.Property | System.AttributeTargets.Field | System.AttributeTargets.All, Inherited=false)]
public class EntryAttribute : Attribute

Remarks

You can specify the kind of UIKeyboardType for data entry by setting KeyboardType property.

c# Example

class Login {
	[Entry ("Enter your name")]
	string Name; 

	[Entry ("Enter your password")]
	[Password]
	string Password;

	[Entry (Placeholder="Your numeric Pin", KeyboardType=UIKeyboardType.NumberPad]
	string Pin;
}
	    

Requirements

Namespace: Dialog
Assembly: Dialog-1 (in Dialog-1.dll)
Assembly Versions: 0.0.0.0