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

FrostedTheme() public method

public FrostedTheme ( ) : System
return System
		public FrostedTheme()
		{
			Name = "FrostedTheme";

			CellBackgroundColor = UIColor.Clear;

			TextColor = UIColor.DarkTextColor;
			TextShadowColor = UIColor.FromWhiteAlpha(0.8f, 1.0f);
			TextShadowOffset = new SizeF(0,1);

			SeparatorColor = UIColor.FromWhiteAlpha(0.4f, 1.0f);
			SeparatorStyle = UITableViewCellSeparatorStyle.None;
			PlaceholderColor = UIColor.FromWhiteAlpha(0.4f, 1.0f);
			DetailTextColor = UIColor.FromWhiteAlpha(0.1f, 0.8f);
			DetailTextAlignment = UITextAlignment.Right;
			PlaceholderAlignment = UITextAlignment.Right;
			
			HeaderTextColor = UIColor.FromWhiteAlpha(1f, 0.8f);
			HeaderTextShadowColor = UIColor.FromWhiteAlpha(0f, 0.2f);

			FooterTextColor = UIColor.FromWhiteAlpha(1f, 0.8f);
			FooterTextShadowColor = UIColor.FromWhiteAlpha(0f, 0.2f);
		}
	}
FrostedTheme