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

DenimTheme() public method

public DenimTheme ( ) : MonoTouch.UIKit
return MonoTouch.UIKit
		public DenimTheme()
		{
			CellBackgroundColor = UIColor.FromWhiteAlpha(1.0f, 0.2f);

			TextColor = UIColor.White;
			TextShadowColor = UIColor.Black;
			TextShadowOffset = new SizeF(0, 1);
			DetailTextColor = UIColor.LightTextColor;

			BarTintColor = UIColor.FromRGB(50, 100, 200);
			BarStyle = UIBarStyle.Default;

			BackgroundColor = UIColor.ScrollViewTexturedBackgroundColor;

			Name = "Denim";
		}
	}
DenimTheme