Blog.Mobile.Helpers.Controls.CreateTextEntry C# (CSharp) Method

CreateTextEntry() public static method

public static CreateTextEntry ( string binding ) : CustomTextEntry
binding string
return Blog.Mobile.Components.CustomTextEntry
		public static CustomTextEntry CreateTextEntry(string binding)
		{
			var entry = new CustomTextEntry();
			entry.SetBinding(Entry.TextProperty, binding);

			return entry;
		}