MonoMobile.Views.Theme.ConfigureBackgroundImage C# (CSharp) Method

ConfigureBackgroundImage() private method

private ConfigureBackgroundImage ( ) : void
return void
		private void ConfigureBackgroundImage()
		{
			if (Cell != null)
			{
				if (Cell.BackgroundColor == null)
				{	
					if (BackgroundImage != null)
					{
						Cell.BackgroundColor = UIColor.FromPatternImage(BackgroundImage);
					}
			
					if (BackgroundColor != null)
					{
						Cell.BackgroundColor = BackgroundColor;
					}
				}
			}
		}