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

LayoutSubviews() public method

public LayoutSubviews ( ) : void
return void
		public override void LayoutSubviews()
		{
			base.LayoutSubviews();

			if (ViewList != null)
			{
				foreach (var view in ViewList)
				{
					view.LayoutIfNeeded();
				}
			}
		}