MonoTouch.Dialog.StringElementCell.StringElementCell C# (CSharp) Method

StringElementCell() public method

public StringElementCell ( UITableViewCellStyle style, string reuseIdentifier ) : System
style UITableViewCellStyle
reuseIdentifier string
return System
		public StringElementCell (UITableViewCellStyle style, string reuseIdentifier) : base(style, reuseIdentifier)
		{
			
			BadgeLabel = new UILabel {
				Font = UIFont.BoldSystemFontOfSize(13),
				BackgroundColor = new UIColor(0.530f , 0.600f , 0.738f , 1.000f),
				TextColor = UIColor.White,
				TextAlignment = UITextAlignment.Center
			};
			BadgeLabel.Layer.CornerRadius = 8;
			
			this.ContentView.Add(BadgeLabel);
		}