MonoMobile.Views.Theme.Theme C# (CSharp) Method

Theme() public method

public Theme ( ) : System
return System
		public Theme()
		{
			Name = GetType().Name.Replace("Theme", string.Empty);

			PlaceholderAlignment = UITextAlignment.Right;
			DisabledColor = UIColor.FromWhiteAlpha(0.8f, 0.4f); 
			
			HeaderTextAlignment = UITextAlignment.Left;
			FooterTextAlignment = UITextAlignment.Center;

			HeaderTextBackgroundColor = UIColor.Clear;
			FooterTextBackgroundColor = UIColor.Clear;
		}