Why cannot change Monotouch.Dialog.TableView.Background color
        Posted  
        
            by 
                BlueSky
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by BlueSky
        
        
        
        Published on 2012-08-26T16:40:43Z
        Indexed on 
            2012/08/29
            9:38 UTC
        
        
        Read the original article
        Hit count: 369
        
Why cannot change MonoTouch.Dialog.TableView.Background color ?  I am using the Elements API of MonoTouch.Dialog. It's still gray!
class MyDialogViewController : DialogViewController {
public MyDialogViewController (RootElement root) : base (root)
{
}
public override void LoadView ()
{
    base.LoadView ();
    TableView.BackgroundColor = UIColor.Clear;
    UIImage background = UIImage.FromFile ("Mybackground.png");
    ParentViewController.View.BackgroundColor = UIColor.FromPatternImage (background);
}
}
public partial class MyVC: UINavigationController
{
    public void CreateTestUI()
    {
            var menu = new RootElement("MyMenu"){
            new Section ("test"){
                new StringElement("Test", delegate() { }), ...
        var dv = new MyDialogViewController (menu) {
            Autorotate = true
        };
        // add the nav controller to the window
        this.PushViewController (dv, true); 
      }
  }
        © Stack Overflow or respective owner