MonoMobile.Views.Theme.ConfigureBackgroundImage C# (CSharp) 메소드

ConfigureBackgroundImage() 개인적인 메소드

private ConfigureBackgroundImage ( ) : void
리턴 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;
					}
				}
			}
		}