Blog.Mobile.Helpers.Controls.CreateTextEntry C# (CSharp) Méthode

CreateTextEntry() public static méthode

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

			return entry;
		}