MonoMobile.Views.RefreshTableHeaderView.LayoutSubviews C# (CSharp) Method

LayoutSubviews() public method

public LayoutSubviews ( ) : void
return void
		public override void LayoutSubviews()
		{
			base.LayoutSubviews();
			var bounds = Bounds;
			
			_LastUpdateLabel.Frame = new RectangleF(0, bounds.Height - 30, bounds.Width, 20);
			_StatusLabel.Frame = new RectangleF(0, bounds.Height - 48, bounds.Width, 20);
			_ArrowView.Frame = new RectangleF(20, bounds.Height - 65, 30, 55);
			_Activity.Frame = new RectangleF(25, bounds.Height - 38, 20, 20);
		}