I am having some problems trying to style a monotouch.dialog.
I am setting the background dialog like
public override void LoadView ()
{
base.LoadView ();
TableView.BackgroundView = null;
TableView.BackgroundColor = UIColor.FromPatternImage(UIImage.FromBundle("Images/Background/bg-app"));
The section title looks ok however each of the elements looks like its recreating the background.
What is the easiest (and best) way to only display the white frame and not to recreate the background? I want the look of a single background image with the dialog appearing over the background
